码迷,mamicode.com
首页 > 其他好文 > 详细

判断链接地址是否有效

时间:2017-09-07 19:37:13      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:out   span   func   nsf   url   pre   tin   curl   head   


public function gethttpcode($url){
$ch = curl_init ();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_TIMEOUT, 2);
curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_NOBODY, FALSE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, FALSE);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, ‘GET‘);
curl_exec($ch);
$httpcode=intval(curl_getinfo($ch,CURLINFO_HTTP_CODE));
if($httpcode!=404){
return true;
}
return false;
}
 

判断链接地址是否有效

标签:out   span   func   nsf   url   pre   tin   curl   head   

原文地址:http://www.cnblogs.com/pcx105/p/7491071.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!