Đoạn code php sau sẽ giúp bạn kiểm tra được link nào còn sống hoặc link nào đã die
CODE <?php
function check_link($url=NULL)
{
if($url == NULL) return false;
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($ch);
$httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);//lay code tra ve cua http
curl_close($ch);
if($httpcode>=200 && $httpcode<300){
return true;
} else {
return false;
}
}
if (check_link("http://thienduongweb.com")){
echo "link sống";
}else{
echo "link chết";
}
?>
|
Thêm vào trang Google +