首先,把PHP數組中的數據寫入JSON文件。
<?php//?生成壹個PHP數組
$data?=?array();
$data['a']?=?'test';
$data['b']?=?'bbb';
//?把PHP數組轉成JSON字符串
$json_string?=?json_encode($data);
//?寫入文件
file_put_contents('test.json',?$json_string);
>然後,把JSON文件中的數據讀取到PHP變量中。
<?php//?從文件中讀取數據到PHP變量
$json_string?=?file_get_contents('test.json');
//?把JSON字符串轉成PHP數組
$data?=?json_decode($json_string,?true);
//?顯示出來看看
var_dump($data);
>