新聞中心
這里有您想知道的互聯(lián)網(wǎng)營(yíng)銷解決方案
php如何讀寫json文件及修改json-創(chuàng)新互聯(lián)
小編給大家分享一下php如何讀寫json文件及修改json,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
實(shí)例如下所示:
// 追加寫入用戶名下文件 $code="001";//動(dòng)態(tài)數(shù)據(jù) $json_string = file_get_contents("text.json");// 從文件中讀取數(shù)據(jù)到PHP變量 $data = json_decode($json_string,true);// 把JSON字符串轉(zhuǎn)成PHP數(shù)組 $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");// 從文件中讀取數(shù)據(jù)到PHP變量 $data = json_decode($json_string,true);// 把JSON字符串轉(zhuǎn)成PHP數(shù)組 $data["001"]["a"]="aas"; $json_strings = json_encode($data); file_put_contents("text.json",$json_strings);//寫入
以上是“php如何讀寫json文件及修改json”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
網(wǎng)站標(biāo)題:php如何讀寫json文件及修改json-創(chuàng)新互聯(lián)
標(biāo)題URL:http://www.ef60e0e.cn/article/dgisci.html