PHP判断远程图片文件是否存在
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-22 17:27:16 浏览: 评论:0
在php中我们利用file_exists来判断本地的文件是否存在,那么如何用PHP判断远程文件是否存在呢,下在我们一起来看一个例子,希望此例子是你需要用到的,代码如下:
- <?php
- /*
- *用PHP判断远程图片(文件)是否存在
- *http://www.phpfensi.com
- */
- function check_remote_file_exists($url) {
- $curl = curl_init($url);
- // 不取回数据
- curl_setopt($curl, CURLOPT_NOBODY, true);
- // 抓取跳转后的内容
- curl_setopt($curl, CURLOPT_FOLLOWLOCATION,1);
- // 发送请求
- $result = curl_exec($curl);
- $found = false;
- // 如果请求没有发送失败
- if ($result !== false) {
- // 再检查http响应码是否为200
- $statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
- var_dump($statusCode);
- if ($statusCode == 200) {
- // $retcode >= 400 -> not found, $retcode = 200, found.
- $found = true;
- }
- }
- curl_close($curl);
- return $found;
- }
- $exists = check_remote_file_exists('http://www.phpfensi.com /allimg/090403/140941513J2-2.jpg');
- if ($exists) {
- echo '存在';
- } else {
- echo '不存在';
- }
- $exists = check_remote_file_exists('http://www.phpfensi.com /allimg/090403/140941513J2-4.jpg');
- if ($exists) {
- echo '存在';
- } else {
- echo '不存在';
- }
- exit;
- ?>
还有一种简单的方法,但效率是低下的,代码如下:
strstr(current(get_headers($url)), "200")
Tags: PHP远程图片 PHP判断是否存在
- 上一篇:php高效快速获取图片尺寸的方法
- 下一篇:jpgraph柱状图的使用方法详解
相关文章
- ·PHP判断远程图片或文件或url是否存在(2014-09-22)
- ·php获取远程图片体积大小的实例(2020-06-17)
- ·PHP判断远程图片是否存在的几种方法(2020-11-27)
- ·php中使用gd库实现远程图片下载实例(2021-05-26)
- ·php将远程图片保存到本地服务器的实现代码(2021-06-15)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)