时间:2021-07-01 10:21:17 帮助过:5人阅读
1) 使用get_headers:
<?php $url = "http://www.abc.com/demo.jpg"; $headers = @get_headers($url); if($headers[0] == 'HTTP/1.1 404 Not Found') { echo "URL not Exists"; } else { echo "URL Exists"; } ?>
get_headers中有第2个参数,是true的话,结果将会是个关联数组
2) 使用CURL
<?php $url = "http://www.domain.com/demo.jpg"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_NOBODY, true); $result = curl_exec($curl); if ($result !== false) { $statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE); if ($statusCode == 200) { echo "URL Exists" } } else { echo "URL not Exists"; } ?>
CURLOPT_NOBODY指定了只是建立连接,而不取整个报文的内容
以上就介绍了PHP检测链接是否存在的代码实例分享,包括了php,实例方面的内容,希望对PHP教程有兴趣的朋友有所帮助。