php讀寫json檔案

2021-07-05 07:24:21 字數 898 閱讀 8067

<?php

// 生成乙個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 $data[0]["a"];

echo $data[1][1];

echo $data[2][0];

echo $data[2][5];

echo $data[2][6];//注意,前面出現了5,下面接著自動為6,而不是2,第三個

echo $data[3]['id'];

echo $data[3]['content'];

// 把php陣列轉成json字串

$json_string = json_encode($data);

// 寫入檔案

file_put_contents('test.json', $json_string);

?>

<?php

// 從檔案中讀取資料到php變數

$json_string = file_get_contents('test.json');

// 把json字串轉成php陣列

$data = json_decode($json_string, true);

// 顯示出來看看

var_dump($data);

?>

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

json讀寫檔案

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

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

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