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

WBOY
WBOYオリジナル
2016-06-06 20:15:30943ブラウズ

<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出来的东西是对象,而不是数组。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。