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

2022-09-28 03:12:10 字數 728 閱讀 8258

例項如下所示:

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

$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 = jswww.cppcns.comon_decode($json_string,true);// 把jsouhquhfsn字串轉成php陣列

$data["001"]www.cppcns.com["a"]="aas";

$json_strings = json_en程式設計客棧code($data);

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

本文標題: php 讀寫json檔案及修改json的方法

本文位址:

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...

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 ...

json讀寫檔案

jsonc 寫配置檔案比較簡單,並且解析配置檔案也比較省事。寫配置檔案 cpp view plain copy include include include include include inc json.h define config file config.json typedef stru...