我正在编写一个属性门户网站.我坚持检查图像.我知道如何检查图像url是否设置.但问题在于检测URL中是否存在有效的图像.
例如:http://property.images.themovechannel.com/cache/7217/6094437/img_main.jpg
此图片网址存在,但图像现已被删除,因此它在我的搜索页面中显示为空白.有没有办法检查网址上有一个图像,然后显示一个占位符,如果它不存在.
就像是
$imageURL = "http://property.images.themovechannel.com/cache/7217/6094437/img_main.jpg"; if (exists($imageURL)) { display image } else { display placeholder }
但是这一切都是检查url是否存在,它在那里只有没有图像
提前致谢
使用
原文链接:https://www.f2er.com/php/131933.htmlgetimagesize()
确保URL指向有效的图像.
if (getimagesize($imageURL) !== false) { // display image }