使用 PHP 检查目录中是否存在图像文件
我的目录中有从多个资源下载的图像文件。
如果我有图像的名称,如何使用 PHP 检查它是否存在?
I have image files in a directory which have downloaded from several resources.
If I have the name of an image, how can I check its existence using PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
is_file()
检查文件是否存在。编辑:
顺便说一句, getImageSize() 告诉你很多关于图像的信息,如果它是
有效,可以由您的服务器解析,它有多大,图像类型是什么,
ETC。
据说它比一些更专业的函数慢,
但是当它返回 true 时,您可以确定图像将是
完全可以使用。
is_file()
checks whether the file exists.EDIT:
btw, getImageSize() tells you a lot about the image, if it is
valid, parseable by your server, how big it is, what type of image,
etc.
It is said to be slower than some of the more specialized functions,
but when this returns true, you can be sure that the image will be
fully usable.
file_exists()
file_exists()