为了账号安全,请及时绑定邮箱和手机立即绑定

php判断远程资源是否存在

标签:
PHP


<?php$url1='http://www.91hi.net/web/demo/1.jpg' //exists$url2='http://91hi.net/web/demo/www/jd/image/logo.png'; //not exists    $get1=get_headers($url1);$get2=get_headers($url2); print_r($get1);print_r($get2);


返回结果:


Array(    [0] => HTTP/1.1 404 Not Found    [1] => Date: Tue, 14 Mar 2017 10:58:00 GMT    [2] => Server: Apache    [3] => Vary: User-Agent,Accept-Encoding    [4] => Connection: close    [5] => Content-Type: text/html)Array(    [0] => HTTP/1.1 200 OK    [1] => Date: Tue, 14 Mar 2017 10:58:00 GMT    [2] => Server: Apache    [3] => Last-Modified: Wed, 09 Nov 2016 08:57:06 GMT    [4] => ETag: "2162a05-13f5-540da70f97c80"    [5] => Accept-Ranges: bytes    [6] => Content-Length: 5109    [7] => Vary: User-Agent    [8] => Connection: close    [9] => Content-Type: image/png) 可以看到返回的http状态信息组成的一维数组.且第一个数组单元为响应状态信息.


于是乎,通过获取到的状态码,用来判断远程资源是否存在。


$statusCode=substr($get1[0], 9, 3);if($statusCode == 200 || $statusCode == 304){    echo "It's exists."}else{    echo "It's not exists."}


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消