从New York Time API输出到JSON文件

时间:2017-08-08 14:33:58

标签: php json

使用API​​和PHP时,我是一个完整的菜鸟。 我想将以下代码转储结果放入名为 books.json 的文件中 而且我不知道该怎么做。非常感谢任何帮助!

// Built by LucyBot. www.lucybot.com
$curl = curl_init();
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$query = array(
  "api-key" => "MY APRI KEY"
);
curl_setopt($curl, CURLOPT_URL,
  "https://api.nytimes.com/svc/books/v3/lists/best-sellers/history.json" . "?" . http_build_query($query)
);
$result = json_decode(curl_exec($curl));
echo json_encode($result);

1 个答案:

答案 0 :(得分:0)

看看file_put_contents:

file_put_contents($path_to_file, $result);