將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中文網其他相關文章!