php使用curl設置超時的重要性

原文:http://phpquan.com/lamp/php/php-curl-timeout/php

網站登陸不了,緣由是沒有可用的 PHP 子進程來響應新的請求了。這多是是因爲PHP-curl  沒有設置超時時間引發的。cookie

 

php使用curl設置超時的重要性curl

這段時間用PHP寫了個爬蟲程序,可是常常執行了一段時間後程序就卡住了。
程序是用的curl方式進行抓取,後來設置了 CURLOPT_TIMEOUT 參數就沒有出現這個問題了
日常若是測試curl都直接設置了url就直接執行了。
curl功能仍是很強大的,若是線上使用最好仍是把 全部參數都設置一遍,還能夠設置毫秒級超時
最後分享一段 curl 方法post

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
function http_request( $URI , $isHearder = false, $post = false)
{
     $ch = curl_init();
     curl_setopt( $ch , CURLOPT_URL, $URI );
     curl_setopt( $ch , CURLOPT_RETURNTRANSFER, 1);
     curl_setopt( $ch , CURLOPT_TIMEOUT, 60);          //單位 秒,也能夠使用
#curl_setopt( $ch , CURLOPT_NOSIGNAL, 1);     //注意,毫秒超時必定要設置這個
#curl_setopt( $ch , CURLOPT_TIMEOUT_MS, 200);  //超時毫秒,cURL 7.16.2中被加入。從PHP 5.2.3起可以使用
     curl_setopt( $ch , CURLOPT_HEADER, $isHearder );
     curl_setopt( $ch , CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36' );
     curl_setopt( $ch , CURLOPT_COOKIEFILE, dirname( __FILE__ ). "/tmp.cookie" );
     curl_setopt( $ch , CURLOPT_COOKIEJAR, dirname( __FILE__ ). "/tmp.cookie" );
     if ( strpos ( $URI , 'https' ) === 0){
         curl_setopt( $ch , CURLOPT_SSL_VERIFYPEER, FALSE);
         curl_setopt( $ch , CURLOPT_SSL_VERIFYHOST, FALSE);
     }
     if ( $post ){
         curl_setopt ( $ch , CURLOPT_POST, 1);
         curl_setopt ( $ch , CURLOPT_POSTFIELDS, $post );
     }
     $result = curl_exec( $ch );
     curl_close( $ch );
     return $result ;
相關文章
相關標籤/搜索