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

2021-10-23 11:23:14 字數 766 閱讀 6284

php修改json資料的方法:首先從檔案中讀取資料到php變數;然後把json字串轉成php陣列;最後通過「file_put_contents("text.json",$json_strings);」方法修改json資料即可。

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

$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檔案。追加,修改json

追加寫入使用者名稱下檔案 code 001 動態資料 json string file get contents text.json 從檔案中讀取資料到php變數 data json decode json string,true 把json字串轉成php陣列 data code array a a...

Python中的檔案IO操作(讀寫檔案 追加檔案)

python中檔案的讀寫包含三個步驟 開啟檔案,讀 寫檔案,關閉檔案。檔案開啟之後必須關閉,因為在磁碟上讀寫檔案的功能是由作業系統提供的,檔案作為物件,被開啟後會占用作業系統的資源,而作業系統在同一時間內開啟檔案的數量是有限的。開啟檔案 python view plain copy f open 路...

php中修改上傳檔案大小

不少剛接觸php開發的朋友,會遇到因為檔案太大而造成的各種檔案上傳失敗,post傳遞值為空等情況。下面列出解決方法。1 修改檔案上傳時限 在檔案上傳時,或許是因為檔案太大,或許是因為網路狀況不好而造成了傳遞超時,這是因為php配置檔案裡的max execution time限制了上傳時間。我們需要更...