PHP函数curl_exec()减慢了我的脚本速度

时间:2010-10-05 10:15:09

标签: codeigniter curl performance response benchmarking

我在CodeIgniter中使用以下函数来获取我的最新推文:

function tweet($id) {

        $c = curl_init();
        curl_setopt($c, CURLOPT_URL, "http://twitter.com/statuses/user_timeline/".$id.".xml?count=1");

        curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);

        //Benchmark starts here
        $src = curl_exec($c);
        //Benchmark ends here

        curl_close($c);

        preg_match('/<text>(.*)<\/text>/', $src, $t);
        $data['tweet'] = htmlentities($t[1]);
        preg_match('/<created_at>(.*)<\/created_at>/', $src, $c);
        $created = $c[1];

        // explode $created so we can process it
        $created_array = explode(' ',$created);
        $time = $created_array[3];
        $time_array = explode(':',$time);
        $format = '%b/%d/%Y %H:%M';
        $date_to_format = $created_array[1].'/'.$created_array[2].'/'.$created_array[5].' '.$time_array[0].':'.$time_array[1];
        $date_time = strptime($date_to_format,$format);
        $created_timestamp = mktime($date_time['tm_hour'], $date_time['tm_min'], 0, $date_time['tm_mon']+1, $date_time['tm_mday'], $date_time['tm_year']+1900);
        $time_diff = time() - $created_timestamp;

        $data['time'] = time_since($time_diff);

        return $data;

    }

我使用CI的Benchmark类来查看为什么网站需要这么长时间才能做出响应,我发现该行

 $src = curl_exec($c);

执行时间超过5秒。谁能告诉我为什么会这样?

2 个答案:

答案 0 :(得分:2)

答案 1 :(得分:1)

我刚刚在我的机器上测试了你的代码(仅限curl请求)并且没有任何问题......它可以快速检索数据:349ms。

您的网络是否存在问题?或者,当你测试你的请求时,Tweeter可能会有一点时间吗?上次我尝试使用Twitter API时,整个网站都出现故障,所以也许他们也有问题。

祝你好运