有一个code api url,它是输出json格式。我需要缓存我的 json 结果或不同的解决方案。因为我的页面在访问新用户时再次调用 api 并且页面打开速度存在问题。我怎样才能做到?
我的代码:
<?php
$jsonurl = 'http://api.site.com/deal/browse.html?apiKey=VN43U6&p=2';
$json = file_get_contents($jsonurl, 0, null, null);
$json_output = json_decode($json);
foreach ($json_output->deals as $objects) {
$title = $objects->title;
echo '<h5 class="coupon-title">' . $title . '</h5>';
}
?>