テーブルにレコードがないのに空の配列をフロントエンドにエコーする方法はありますか?テーブルが空ですが空の配列を返します
$result = mysqli_query($conn, "SELECT * FROM person");
while($res = mysqli_fetch_assoc($result)) {
$row = array(
'fname' => $res['fname']
);
$encoded[] = $row;
}
//$encoded ? echo json_encode($encoded); : echo array();
フロントエンドに空の配列をエコーするとどういう意味ですか? – bestprogrammerintheworld