标签: php curl counter http-status-codes
我正在寻找计算成功卷曲的最好方法,我只是把它拼凑在一起,它有效,但它有点慢,有没有更快的选择?我在一分钟内运行/刷新脚本,并尝试确定在该分钟内成功拉出的次数。
if(curl_getinfo($ch, CURLINFO_HTTP_CODE) === 200) { $counter = @file_get_contents('count.txt'); $counter++; @file_put_contents('count.txt', $counter); }
答案 0 :(得分:0)
要加快速度,可以使用多线程卷曲:http://www.php.net/manual/en/function.curl-multi-info-read.php