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); */ ?>
相关推荐
zyyjay 2020-11-09
xuebingnan 2020-11-05
samtrue 2020-11-22
stefan0 2020-11-22
yifangs 2020-10-13
songshijiazuaa 2020-09-24
hebiwtc 2020-09-18
天步 2020-09-17
83911535 2020-11-13
whatsyourname 2020-11-13
zhouyuqi 2020-11-10
Noneyes 2020-11-10
mathchao 2020-10-28
王志龙 2020-10-28
wwwsurfphpseocom 2020-10-28
diskingchuan 2020-10-23
savorTheFlavor 2020-10-23