如何检查图像文件从其他网站是可见的

How to check image file from other site is visible

本文关键字:网站 其他 文件 何检查 检查 图像      更新时间:2023-09-26

我使用的图片文件来自其他网站。

<img src="//othersite.url/xxx.jpg">

但它通常是不可见的。因为Http状态是404、301等

如何检查图像是否可见?

在php中你可以检查文件是否存在。

<?php
$imageurl=//othersite.url/xxx.jpg;
if(file_exists($imageurl)
  echo "Yes";
else
  echo "No";
?>

使用onloadonerror事件处理程序

<img src="//othersite.url/xxx.jpg" onerror="alert('error')"  onload="alert('image loaded')" >