在Zend FW:
file_exists('xx/xxx/xxxx.jpg');
返回1,但xx / xxx / xxxx.jpg不是文件或目录。
这是Zend FW返回的错误页面。因为它不是文件或有效网址
如何查看文件是否存在?
答案 0 :(得分:2)
file_exists检查文件或目录是否存在。 尝试使用is_file
答案 1 :(得分:0)
要检查HTTP是否存在,您需要检查HTTP响应代码。最简单的方法是使用curl。试试这个:
$url = 'http://google.com/this_does_not_exist.jpg';
$ch=curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_NOBODY, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,10);//timeout
$res = curl_exec($ch);
$code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
switch ($code % 100){
case 2: echo "exists\n"; break;
case 3: echo "too many redirects\n"; break;
case 4: echo "does not exist\n"; break;
case 5: echo "5xx error - may or may not exist once server fixed\n"; break;
default:
echo "Something weird. HTTP response code = $code\n";
}