首页 > 网站 > 建站经验 > 正文

【PH_P教程】php筛选不存在图片资源的方法

2019-11-02 15:39:37
字体:
来源:转载
供稿:网友

   关于【PHP教程】,下面电脑高手网小编给大家摘录一篇关于使用php实现筛选不存在图片资源的几种方法,非常的简单实用,有需要的小伙伴可以参考下,希望可以给正在学习PHP知识的朋友一些帮助或建议。

  方法一:

  最简单的方法就是用fopen(),看看文件能否打开,能打就文件当然就存在。

  ?

1 2 3 4 5 6 7 8 9 10 11 12 <?php $url = 'http://www.jb51.net/images/test.jpg';    if( @fopen( $url, 'r' ) )   echo 'File Exits'; else  {  echo 'File Do Not Exits'; } ?>

  方法二:

  ?

3E电影网[www.aikan.tv/special/3Edianyingwang/]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 /**     * 筛选不存在的图片资源     *     * @author wanggeng <[email protected]>     * @return vodi     */          private static function _checkAll($url)    {       $curl = curl_init($url);      curl_setopt($curl, CURLOPT_NOBODY, true);      $result = false;      $res = curl_exec($curl);      if ($res !== false){        $statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE); 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表