php判断远程图片是否存在
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-16 10:36:09 浏览: 评论:0
- function img_exits($url)
- {
- $ch = curl_init();
- curl_setopt($ch, curlopt_url,$url);
- curl_setopt($ch, curlopt_nobody, 1); // 不下载
- curl_setopt($ch, curlopt_failonerror, 1);
- curl_setopt($ch, curlopt_returntransfer, 1);
- if(curl_exec($ch)!==false)
- return true;
- else
- return false;
- }
- //方法二,代码如下:
- function img_exists($url)
- {
- if(file_get_contents($url,0,null,0,1))
- return 1;
- else
- return 0;
- }
- //
- /**
- @title:如何检查某个远程文件是否存在(php5)
- @author:axgle
- @version:1.0
- *//开源代码phpfensi.com
- $url='http://www.phpfensi.com/';
- echo url_exists($url);
- function url_exists($url) {
- $head=@get_headers($url);
- if(is_array($head)) {
- return true;
- }
- return false;
- }
- ?>
- 网页方法,代码如下:
- <script language= "javascript">
- function geturl(url)
- {
- var xmlhttp = new activexobject( "microsoft.xmlhttp ");
- xmlhttp.open( "get ",url,false);
- xmlhttp.send();
- if (xmlhttp.readystate==4)
- alert((xmlhttp.status==200)? "文件存在 ": "文件不存在 ");
- }
- </script>
- 请输入文件地址: <input name= "file " id= "file " value= "http://www.phpfensi.com ">
- <button onclick= "geturl(file.value) "> 检测地址 </button>
Tags: php判断远程 图片是否存在
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)