1

此代码有效,但是由于未知原因,我的网站在 1 秒内加载,添加此 php 时需要 24 秒。我仍在尝试锻炼为什么它会减慢它的速度,我知道你拥有的代码行越多,速度就越慢,但这是 24 秒,即使脚本有效,我也希望解决这个问题,我已经检查了服务器并且没有任何技术错误,它是在添加此代码时,因此需要纠正为什么会发生这种情况并加快此代码的速度。

<?
class shareCount
{
    private $url, $timeout;
    function __construct($url, $timeout = 10)
    {
        $this->url     = rawurlencode($url);
        $this->timeout = $timeout;
    }

    function get_tweets()
    {
        $json_string = $this->file_get_contents_curl('http://urls.api.twitter.com/1/urls/count.json?url=' . $this->url);
        $json        = json_decode($json_string, true);
        return isset($json['count']) ? intval($json['count']) : 0;
    }

    function get_fb()
    {
        $json_string = $this->file_get_contents_curl('http://api.facebook.com/restserver.php?method=links.getStats&format=json&urls=' . $this->url);
        $json        = json_decode($json_string, true);
        return isset($json[0]['total_count']) ? intval($json[0]['total_count']) : 0;
    }

    function get_plusones()
    {
        $curl = curl_init();
        curl_setopt($curl, CURLOPT_URL, "https://clients6.google.com/rpc");
        curl_setopt($curl, CURLOPT_POST, true);
        curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($curl, CURLOPT_POSTFIELDS, '[{"method":"pos.plusones.get","id":"p","params":{"nolog":true,"id":"' . rawurldecode($this->url) . '","source":"widget","userId":"@viewer","groupId":"@self"},"jsonrpc":"2.0","key":"p","apiVersion":"v1"}]');
        curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($curl, CURLOPT_HTTPHEADER, array(
            'Content-type: application/json'
        ));
        $curl_results = curl_exec($curl);
        curl_close($curl);
        $json = json_decode($curl_results, true);
        return isset($json[0]['result']['metadata']['globalCounts']['count']) ? intval($json[0]['result']['metadata']['globalCounts']['count']) : 0;
    }

    private function file_get_contents_curl($url)
    {
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
        curl_setopt($ch, CURLOPT_FAILONERROR, 1);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_TIMEOUT, $this->timeout);
        $cont = curl_exec($ch);
        if (curl_error($ch)) {
            die(curl_error($ch));
        }
        return $cont;
    }
}
?>

<div class="entry-share-buttons">
    <div class="share share_size_large share_type_facebook"><span class="share__count"><?php echo $obj->get_fb(); ?></span><a class="share__btn" href="http://www.facebook.com/sharer/sharer.php?u=<?php the_permalink()?>" data-url="<?php the_permalink()?>" data-text="<?php the_title() ?>" target="_blank">Like</a></div>
    <div class="share share_size_large share_type_twitter"><span class="share__count"><?php echo $obj->get_tweets(); ?></span><a class="share__btn" href="http://www.twitter.com/intent/tweet?url=<?php the_permalink()?>" data-url="<?php the_permalink()?>" data-text="<?php the_title() ?>" target="_blank">Tweet</a></div>
    <div class="share share_size_large share_type_email"><span class="share__count"><?php echo $obj->get_plusones(); ?></span><a class="share__btn" href="http://plus.google.com/share?url=<?php the_permalink()?>" data-url="<?php the_permalink()?>" data-text="<?php the_title() ?>" target="_blank">Email</a></div>
    <div class="share share_size_large share_type_comment"><span class="share__count"><?php comments_popup_link( __( '0' ), __( '1' ), __( '%' ) ); ?></span><a class="share__btn" href="#">Comment</a></div>
</div>
4

3 回答 3

1

我最近遇到了同样的问题。该页面有许多从 FB 和 Twitter 下载喜欢/分享计数数据的链接,页面速度急剧下降。

我发现解决此问题的最佳方法是在数据库中创建一个表(如果您更喜欢将其保存为平面文件 xml/json,您也可以对其进行更新),其中包含需要刷新的信息的参数(url /网址)。

编写一个单独的应用程序,该应用程序可以作为服务运行,也可以作为计划任务运行,您可以在其上放置触发器并设置所需的刷新量,仅此而已。

真的很简单,基本上你把客户端的负载放到服务器上。

于 2014-11-13T15:43:32.823 回答
0

问题在于对 Twitter、Facebook 和 Google 的外部请求非常缓慢。对此你无能为力。

你可以做的是缓存喜欢、分享和+的数量。这样下一个访问者就不必等待 Twitter、Facebook 和 Google 的缓慢 API。

于 2014-08-05T19:00:53.010 回答
0

这是因为您正在与其他网站建立大量连接并从中获取数据。没有很多方法可以简化这一点。

于 2014-08-05T19:01:21.377 回答