时间:2021-07-01 10:21:17 帮助过:4人阅读
下面是作者在网上找到的方法,在这里和大家分享一下。
//php判断远程文件是否存在
function url_exists($url){
$handle=curl_init($url);
if(false===$handle){
return false;
}
curl_setopt($handle,CURLOPT_HEADER,false);
curl_setopt($handle,CURLOPT_FAILONERROR,true);
curl_setopt($handle,CURLOPT_NOBODY,true);
curl_setopt($handle,CURLOPT_RETURNTRANSFER,false);
$connectable=curl_exec($handle);
//http://www.scutephp.com/
curl_close($handle);
return $connectable;
}