php 讀寫json檔案。追加,修改json

2021-08-07 03:46:46 字數 620 閱讀 4072

// 追加寫入使用者名稱下檔案

$code="001";//動態資料

$json_string = file_get_contents("text.json");// 從檔案中讀取資料到php變數

$data = json_decode($json_string,true);// 把json字串轉成php陣列

$data[$code]=array("a"=>"as","b"=>"bs","c"=>"cs");

$json_strings = json_encode($data);

file_put_contents("text.json",$json_strings);//寫入

//修改

$json_string = file_get_contents("text.json");// 從檔案中讀取資料到php變數

$data = json_decode($json_string,true);// 把json字串轉成php陣列

$data["001"]["a"]="aas";

$json_strings = json_encode($data);

file_put_contents("text.json",$json_strings);//寫入

php追加和修改檔案中的json資料

php修改json資料的方法 首先從檔案中讀取資料到php變數 然後把json字串轉成php陣列 最後通過 file put contents text.json json strings 方法修改json資料即可。追加寫入使用者名稱下檔案 code 001 動態資料 json string fil...

php 讀寫json檔案及修改json的方法

例項如下所示 追加寫入使用者名稱下檔案 code 001 動態資料 json string file get contents text.json 程式設計客棧從檔案中讀取資料到php變數 data json decode json string,true 把json字串轉成php陣列 data c...

php讀寫json檔案

生成乙個php陣列 data array 0 array a orange b banana 1 array 1,2,3,4,5,6 2 array first 5 second third data 3 id 30 data 3 content phperwei31 訪問二維陣列的方法 echo ...