首頁 > 後端開發 > php教程 > 这样写为什么不能更新内容

这样写为什么不能更新内容

WBOY
發布: 2016-06-06 20:15:30
原創
943 人瀏覽過

<code><?php $jsonOr=file_get_contents("json.json");
$jsonDe=json_decode($jsonOr);
array_push($jsonDe,array($_POST["title"],$_POST["content"]));
$jsonEn=json_encode($jsonDe);
file_put_contents($jsonOr,$jsonEn;);
?></code>
登入後複製
登入後複製

回复内容:

<code><?php $jsonOr=file_get_contents("json.json");
$jsonDe=json_decode($jsonOr);
array_push($jsonDe,array($_POST["title"],$_POST["content"]));
$jsonEn=json_encode($jsonDe);
file_put_contents($jsonOr,$jsonEn;);
?></code>
登入後複製
登入後複製

file_put_contents($jsonOr,$jsonEn;); ????
先搞清楚这个函数每个参数的意义,检查一下文件写入权限,再把语法错误修改一下好伐~

$jsonDe=json_decode($jsonOr);
建议加第二个参数,默认的话,decode出来的东西是对象,而不是数组。

相關標籤:
php
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板