时间:2021-07-01 10:21:17 帮助过:16人阅读
不存在,肯定就是地址有错误了
file_exists 和 is_file 应该是不能用于url文件
如果仅仅是检测图片是否存在,则可以这样写:
$url=@getimagesize($path);
if(!is_array($url))
{
echo ' The image doesn\'t exist';
}
else {
echo ' The image exists';
}
检查所有类型文件的话可以用curl
...
恭喜你答对了!