我有这个函数来检索 Facebook 对博客帖子的评论计数:
function comment_count($url) {
$json = json_decode(file_get_contents('https://graph.facebook.com/?ids=' . $url));
return ($json->$url->comments) ? $json->$url->comments : 0;
}
但是,如果我将它插入一个循环以获取查询结果以检索页面上的五个帖子,则此功能会严重影响网站的速度(页面加载最多需要 6-7 秒)。
有没有办法避免这种情况?为什么这么慢?
谢谢