标签: php json web-services
在我的项目中,我必须从URL获取并存储json数据。我已经设法使用file_get_contents获取json数据。现在我希望将检索到的数据存储到json格式的文件夹中。可能吗?如果是这样我怎么做谢谢你提前。
答案 0 :(得分:0)
file_put_contents()可以正常使用。
file_put_contents()
file_put_contents('someFileName.json', $yourStringOfJson);
http://www.php.net/manual/en/function.file-put-contents.php