检查是否存在外部图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了检查是否存在外部图像相关的知识,希望对你有一定的参考价值。

Simple call imageExists('http://example.com/image.jpg');
true if it exists else false.
  1. function imageExists($url){
  2. $h = get_headers($url);
  3. return ($h[0] == "HTTP/1.1 404 Not Found")?false:true;
  4. }

以上是关于检查是否存在外部图像的主要内容,如果未能解决你的问题,请参考以下文章

PHP 检查外部图像是否存在

检查是否存在外部图像

检查外部图像是否存在

检查外部图像是否存在

分享前端开发常用代码片段

收藏|分享前端开发常用代码片段