MySQLi の結果を JSON に変換する: 軽量のアプローチ
モバイル アプリケーション開発では、軽量で簡単に利用できる形式でデータを表現することが重要です。広く採用されているデータ形式である JSON は、データを構造化して送信するための簡潔かつ柔軟な方法を提供します。 MySQLi クエリ結果を JSON に変換すると、相互運用性とデータ交換に有益です。
このチュートリアルでは、モバイル アプリケーションのニーズに応えるために、MySQLi 結果を JSON 形式に変換する方法を検討します。
$mysqli = new mysqli('localhost','user','password','myDatabaseName'); $myArray = array(); $result = $mysqli->query("SELECT * FROM phase1"); while($row = $result->fetch_assoc()) { $myArray[] = $row; } echo json_encode($myArray);
In this example, we execute a query on the `phase1` table and store the results in an array. The `fetch_assoc()` method is used to retrieve associative arrays, where the keys are field names and the values are field values. The `json_encode()` function then converts the array into a JSON string, providing a lightweight representation of the query results. You can modify the `fetch_assoc()` method to `fetch_row()` to obtain numeric arrays, where the values are ordered sequentially by the field numbers.
以上がモバイル アプリ開発のために MySQLi の結果を JSON に変換するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。