首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

file_exists一直不存在,该怎么解决

2013-07-04 
file_exists一直不存在用is_file也不存在$path http://localhost/IMAGES_951234567/1372.jpgif(is_fi

file_exists一直不存在
用is_file也不存在

$path = "http://localhost/IMAGES_951234567/1372.jpg";
if(is_file($path)){
echo "存在";
}else{
echo "不存在";
}
一直显示不存在
我在浏览器上打这个地址,图片就出来了
另外说一下,我伪静态了地址






肿么办~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[解决办法]
file_exists 和 is_file 应该是不能用于url文件
如果仅仅是检测图片是否存在,则可以这样写:
 $url=@getimagesize($path);

if(!is_array($url))
{
     echo ' The image doesn\'t exist';
}
else {
     echo ' The image exists';
}

检查所有类型文件的话可以用curl

热点排行