- 1、本文档共4页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
PHP中常用的6种GET和POST请求发送方法详解
PHP中常用的6种GET和POST请求发送方法详解在php开发中,我们常常需要远程抓取数据,因此对于php新人而言,处理远程请求、保证数据的安全性,是必须掌握的内容,也是非常重要的内容。下面题主就将为大家分享6中常见的GET和POST请求发送方法。1、用file_get_contents 以get方式获取内容:?php $url = / ; $html = file_get_contents ( $url ); echo $html ; ?2、用fopen打开url,用get方式获取$fp = fopen ( $url , r ); stream_get_meta_data( $fp ); while (! feof ( $fp )) { $result .= fgets ( $fp , 1024); } echo url body: $result ; fclose( $fp );3、用file_get_contents 以post方式获取内容:$data = array ( foo = bar ); $data = http_build_query($data); $opts = array ( http = array ( method = POST , header = Content-type: application/x-www-form-urlencodedrn . Content-Length: . strlen($data) . rn , content = $data ) ); $context = stream_context_create($opts); $html = file_get_contents( , false , $context); echo $html; 4、用fsockopen函数打开url,以get方式获取完整的数据,包括header和body,fsockopen需要 PHP.ini 中 allow_url_fopen 选项开启function get_url ( $url , $cookie =false) { $url = parse_url ( $url ); $query = $url [path]. ? . $url [query]; echo Query: . $query ; $fp = fsockopen ( $url [host], $url [port]? $url [port]:80 , $errno , $errstr , 30); if (! $fp ) { return false; } else { $request = GET $query HTTP/1.1rn ; $request .= Host: $url[host]rn ; $request .= Connection: Closern ; if ( $cookie ) $request .= Cookie: $cookien ; $request .= rn ; fwrite( $fp , $request ); while (!@ feof ( $fp )) { $result .= @ fgets ( $fp , 1024); } fclose( $fp ); return $result ; } } //获取url的html部分,去掉header function GetUrlHTML( $url , $cookie =false) { $rowdata = get_url( $url , $cookie ); if ( $rowdata ) { $body = stristr ( $rowdata , rnrn ); $body = substr ( $body ,4, strlen ( $body )); return $body ; } return false; }5、用fsockopen函数打开url,以POST方式获取完整的数据,包括header和bodyfunction HTTP_Post( $URL , $data , $cookie , $referrer = ) { // parsing the given URL $URL_Info = parse_url ( $URL ); // Building referrer if ( $referrer == ) // if not given use this script as referrer $referrer = 111 ; // making string from $da
文档评论(0)