php 模拟get_headers函数的代码示例

2015-01-24信息快讯网

本篇文章介绍了,php模拟get_headers函数的代码示例。需要的朋友参考下

<?php  

02 if(!function_exists('get_headers')){

03 function get_headers($url,$format=0){

04 $url=parse_url($url);

05 $end="\r\n\r\n";

06 $fp=fsockopen($url['host'],(empty($url['port'])?80:$url['port']),$errno,$errstr,30);

07 if($fp){

08 $out="GET / HTTP/1.1\r\n";

09 $out.="Host: ".$url['host']."\r\n";

10 $out.="Connection: Close\r\n\r\n";

11 $var='';

12 fwrite($fp,$out);

13 while(!feof($fp)){

14 $var.=fgets($fp,1280);

15 if(strpos($var,$end))

16 break;

17 }

18 fclose($fp);

19 $var=preg_replace("/\r\n\r\n.*\$/",'',$var);

20 $var=explode("\r\n",$var);

21 if($format){

22 foreach($var as $i){

23 if(preg_match('/^([a-zA-Z -]+): +(.*)$/',$i,$parts))

24 $v[$parts[1]]=$parts[2];

25 }

26 return $v;

27 }else{

28 return $var;

29 }

30 }

31 }

32 }

33 echo '<pre>';

34 print_r(get_headers('http://www.jb51.net'));

DOM XPATH获取img src值的query
php jq jquery getJSON跨域提交数据完整版
php读取本地文件常用函数(fopen与file_get_contents)
分享PHP header函数使用教程
PHP 通过Socket收发十六进制数据的实现代码
完美解决PHP中的Cannot modify header information 问题
CodeIgniter上传图片成功的全部过程分享
解析isset与is_null的区别
php中用socket模拟http中post或者get提交数据的示例代码
如何解决CI框架的Disallowed Key Characters错误提示
mongo Table类文件 获取MongoCursor(游标)的实现方法分析
file_get_contents("php://input", "r")实例介绍
解析curl提交GET,POST,Cookie的简单方法
php 去除html标记--strip_tags与htmlspecialchars的区别详解
探讨:parse url解析URL,返回其组成部分
php htmlspecialchars()与shtmlspecialchars()函数的深入分析
使用Apache的htaccess防止图片被盗链的解决方法
php获取本地图片文件并生成xml文件输出具体思路
使用php发送有附件的电子邮件-(PHPMailer使用的实例分析)
PHP中如何调用webservice的实例参考
PHP header()函数使用详细(301、404等错误设置)
关于shopex同步ucenter的redirect问题,导致script不运行
phpmyadmin显示utf8_general_ci中文乱码的问题终级篇
PHP中使用cURL实现Get和Post请求的方法
file_get_contents获取不到网页内容的解决方法
PHP和.net中des加解密的实现方法
set_include_path和get_include_path使用及注意事项
破解.net程序(dll文件)编译和反编译方法
mysqli_set_charset和SET NAMES使用抉择及优劣分析
PDO版本问题 Invalid parameter number: no parameters were bound
记录PHP错误日志 display_errors与log_errors的区别
如何获知PHP程序占用多少内存(memory_get_usage)
PHP管理内存函数 memory_get_usage()使用介绍
PHP Parse Error: syntax error, unexpected $end 错误的解决办法
php中使用parse_url()对网址进行解析的实现代码(parse_url详解)
©2014-2024 dbsqp.com