Bạn có thể sử dụng json_encode
chức năng.
- Tìm nạp dữ liệu từ db và gán nó vào một mảng
- Sau đó, sử dụng
json_encode($result_array)
. Điều này sẽ tạo ra kết quả json. Nhấp vào đây - Sử dụng
file_put_contents
hàm lưu kết quả json vào tệp .json của bạn
Sau đây là một mã ví dụ,
$result = mysql_query(your sql here);
$data = array();
while ($row = mysql_fetch_assoc($result)) {
// Generate the output in desired format
$data = array(
'cols' => ....
'rows' => ....
'p' => ...
);
}
$json_data = json_encode($data);
file_put_contents('your_json_file.json', $json_data);