使用 PHP 检查目录中是否存在图像文件

发布于 2024-09-03 16:31:45 字数 62 浏览 5 评论 0原文

我的目录中有从多个资源下载的图像文件。

如果我有图像的名称,如何使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

萌无敌 2024-09-10 16:31:45

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文