gpt4 book ai didi

php - 检查图像是否存在php

转载 作者:可可西里 更新时间:2023-10-31 22:06:17 25 4
gpt4 key购买 nike

我正在编写一个房地产门户网站。我坚持检查图像。我知道如何检查是否设置了图片网址。但问题在于检测 url 中是否确实存在有效图像。

示例:http://property.images.themovechannel.com/cache/7217/6094437/img_main.jpg

此图片 url 存在,但图片现在已被删除,因此它在我的属性搜索页面中只显示空白。有没有一种方法可以检查 url 中是否有图像,如果不存在则显示占位符。

有点像

$imageURL = "http://property.images.themovechannel.com/cache/7217/6094437/img_main.jpg";

if (exists($imageURL)) { display image }
else { display placeholder }

但这一切所做的只是检查 url 是否存在,它确实存在,只是那里没有图像

提前致谢

最佳答案

使用getimagesize()以确保 URL 指向有效的图像。

if (getimagesize($imageURL) !== false) {
// display image
}

关于php - 检查图像是否存在php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14970322/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com