//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.phpernote.com/php-function/744.html
curl_close($handle);
return $connectable;
}
php判断远程文件是否存在的办法
最新推荐文章于 2022-08-22 11:23:36 发布