- ch = curl_init(); curl_setopt(ch, CURLOPT_URL, url); curl_setopt(ch, CURLOPT_TIMEOUT,60); //只需要设置一个秒的数量就可以 curl_setopt(ch, CURLOPT_HTTPHEADER, headers); curl_setopt(ch, CURLOPT_USERAGENT, defined_vars‘HTTP_USER_AGENT’); 2. curl普通秒级超时使用: 复制代码 代码如下: curl_setopt(ch, CURLOPT_NOSIGNAL,true);//支持毫秒级别超时设置 封装函数示例 function curl_post3(url, postData) { postData = json_encode( postData); curl = curl_init(); //初始化 curl_setopt(curl,CURLOPT_URL, url); //设置url curl_setopt(curl,CURLOPT_POST,1); //设置发送方式为post请求 curl_setopt(curl,CURLOPT_POSTFIELDS, postData); //设置post的数据 curl_setopt(postData)) ); result = curl_exec( curl); curl_close(
未经允许不得转载:肥猫博客 » curl超时时间设置