我想通過使用PHP從mysql數據庫生成JSON文件。到目前爲止,我有:使用PHP將mysql值轉儲到JSON文件
<?php
error_reporting(-1);
$result=mysql_query("SELECT * FROM wp_posts");
$i=0;
while($row=mysql_fetch_array($result)) {
$response[$i]['post_status'] = $row['post_status'];
$response[$i]['post_title']= $row['post_title'];
$data['posts'][$i] = $response[$i];
$i=$i+1;
}
$json_string = json_encode($data);
$file = 'file.json';
file_put_contents($file, $json_string);
?>
這將創建file.json文件,但該文件只包含「null」。
什麼是'$的價值json_string'和'$ data'? – Julio
'mysql_'函數已被棄用。改爲使用'mysqli'或'PDO'。 – Brewal
不適合。 $ data – lvil