首頁 >後端開發 >php教程 >php判断远路文件是否存在

php判断远路文件是否存在

WBOY
WBOY原創
2016-06-13 10:40:29782瀏覽

php判断远程文件是否存在

//判断远程文件是否存在function remote_file_exists($url) {	$executeTime = ini_get('max_execution_time');	ini_set('max_execution_time', 0);	$headers = @get_headers($url);	ini_set('max_execution_time', $executeTime);	if ($headers) {		$head = explode(' ', $headers[0]);		if ( !empty($head[1]) && intval($head[1]) < 400) return true;	}	return false;}

?

神奇的iteye,居然有两个empty,无语了.

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn