在我的项目中,我必须从一个URL获取并存储JSON数据。我已经设法使用file_get_contents获取了JSON数据。现在我希望将检索到的数据以JSON格式存储到一个文件夹中。可以吗?如果可以,我该怎么做?
lyfkaqu11#
file_put_contents()将工作得很好。
file_put_contents()
file_put_contents('someFileName.json', $yourStringOfJson);
http://www.php.net/manual/en/function.file-put-contents.php
1条答案
按热度按时间lyfkaqu11#
file_put_contents()
将工作得很好。http://www.php.net/manual/en/function.file-put-contents.php