php 关于php创建 json文件 和 对内容增删改查 示例

<?php
//fopen($file,‘w‘); //打开文件/创建文件
//file_put_contents($file,$content)//写入文件
//file_get_contents($file)//读取文件
//json_encode();//对变量json编码
//json_decode();//对 JSON 解码
//json_last_error();//返回最后发送的错误

$arr=array(‘1‘,‘2‘,‘3‘);
$file=‘../json/dom.json‘;
$set=file_put_contents($file,json_encode($arr));
var_dump($set);
$get=file_get_contents($file);
$msg=json_decode($get);
var_dump($msg);
echo $msg[‘0‘];
fopen(‘../json/dom2.json‘,‘a‘);
/* $msg=json_decode($file,true);
var_dump($msg);
print_r($msg); */
/* $arr=array(‘name‘=>‘lizi‘,‘age‘=>‘24‘);

$jsonArr=json_encode($arr);

$phpArr=json_decode($jsonArr);

var_dump(is_object($phpArr));

print_r($phpArr->name);

echo ‘<br />‘.gettype($phpArr); */
?>

相关推荐