Nicolase 2020-02-16
<?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); */ ?>
<?php. if (!empty($_POST)) {. $data1 = $_POST["data1"];$data2 = $_POST["data2"];$fuhao = $_POST["fuh