有没有办法让 PHP 检测损坏的图像?
有没有办法让PHP判断图像文件是否损坏而无法正常显示?
我尝试使用 fopen
检查 URL 是否有效,但没有成功!
Is there any way to have PHP determine whether an image file is corrupted and will not be able to display properly?
I've tried to check with fopen
and check whether the URL is valid, but it hasn't worked!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
如果损坏是指损坏,则更改为 imagecreatefrom{extension} 也将无法读取它们:
If by broken you mean corrupted, changes are the imagecreatefrom{extension} won't be able to read them either:
Javascript 解决方案(涉及 jQuery,尽管没有它也应该可以做到):
Javascript solution (with involving jQuery, though this should be possible to do without it too):
如果您指的是 404 中的损坏,而不是损坏的图像,您始终可以使用以下内容:
If you mean broken as in a 404, and not a corrupt image, you can always use something along the lines of:
这对我来说 100% 有效:) 我通过 file_exists() 测试图像是否存在,如果存在,您将用它捕获损坏的图像。
This works for me 100% :) I test if image exists by file_exists() and if it exists, you will catch corrupted images with this.
如果文件在您的服务器上,请使用 php
http://php 中的 file_exists 函数进行检查.net/manual/en/function.file-exists.php
if the files are there on your server check using file_exists function in php
http://php.net/manual/en/function.file-exists.php
查看所有最新损坏文件的一个好方法是使用 cpanel“错误日志”,它将显示所有最近 300 个损坏文件。
A great way to view all your latest broken files is to use cpanel "Error Log" which will show you all the last 300 broken files.