이 글은 주로 http를 운영하는 PHP의 기술과 관련된 PHP의 httpRequest 구현 방법을 소개하며 일정한 참고 가치가 있습니다. 도움이 필요한 친구는 이를 참고할 수 있습니다.
이 글의 예에서는 httpRequest를 구현하는 PHP의 방법을 설명합니다. 자세한 내용은 다음과 같습니다.
학교 도서관 웹사이트에서 데이터를 가져와 처리한 다음 브라우저로 반환하고 싶습니다. 여러 가지 방법을 시도했습니다. 처음에는 http_request()를 시도했는데 이 대학에서는 pecl_http를 지원하고 있다가 인터넷에 널리 퍼져 있는 HttpRequest 클래스를 어떻게 사용하는지 몰라서 실패했습니다. 나중에 나는 httpRequest($url, $post='', $method='GET', $limit=0, $returnHeader=FALSE, $cookie='', $bysocket=FALSE, $ip='', 함수를 보았습니다. $ timeout=15, $block=TRUE), 성공적으로 사용해서 공유하려고 올렸습니다. 함수 코드는 다음과 같습니다.
코드는 다음과 같습니다.
<?php /** * Respose A Http Request * * @param string $url * @param array $post * @param string $method * @param bool $returnHeader * @param string $cookie * @param bool $bysocket * @param string $ip * @param integer $timeout * @param bool $block * @return string Response */ function httpRequest($url,$post='',$method='GET',$limit=0,$returnHeader=FALSE,$cookie='',$bysocket=FALSE,$ip='',$timeout=15,$block=TRUE) { $return = ''; $matches = parse_url($url); !isset($matches['host']) && $matches['host'] = ''; !isset($matches['path']) && $matches['path'] = ''; !isset($matches['query']) && $matches['query'] = ''; !isset($matches['port']) && $matches['port'] = ''; $host = $matches['host']; $path = $matches['path'] ? $matches['path'].($matches['query'] ? '?'.$matches['query'] : '') : '/'; $port = !empty($matches['port']) ? $matches['port'] : 80; if(strtolower($method) == 'post') { $post = (is_array($post) and !empty($post)) ? http_build_query($post) : $post; $out = "POST $path HTTP/1.0\r\n"; $out .= "Accept: */*\r\n"; //$out .= "Referer: $boardurl\r\n"; $out .= "Accept-Language: zh-cn\r\n"; $out .= "Content-Type: application/x-www-form-urlencoded\r\n"; $out .= "User-Agent: $_SERVER[HTTP_USER_AGENT]\r\n"; $out .= "Host: $host\r\n"; $out .= 'Content-Length: '.strlen($post)."\r\n"; $out .= "Connection: Close\r\n"; $out .= "Cache-Control: no-cache\r\n"; $out .= "Cookie: $cookie\r\n\r\n"; $out .= $post; } else { $out = "GET $path HTTP/1.0\r\n"; $out .= "Accept: */*\r\n"; //$out .= "Referer: $boardurl\r\n"; $out .= "Accept-Language: zh-cn\r\n"; $out .= "User-Agent: $_SERVER[HTTP_USER_AGENT]\r\n"; $out .= "Host: $host\r\n"; $out .= "Connection: Close\r\n"; $out .= "Cookie: $cookie\r\n\r\n"; } $fp = fsockopen(($ip ? $ip : $host), $port, $errno, $errstr, $timeout); if(!$fp) return ''; else { $header = $content = ''; stream_set_blocking($fp, $block); stream_set_timeout($fp, $timeout); fwrite($fp, $out); $status = stream_get_meta_data($fp); if(!$status['timed_out']) {//未超时 while (!feof($fp)) { $header .= $h = fgets($fp); if($h && ($h == "\r\n" || $h == "\n")) break; } $stop = false; while(!feof($fp) && !$stop) { $data = fread($fp, ($limit == 0 || $limit > 8192 ? 8192 : $limit)); $content .= $data; if($limit) { $limit -= strlen($data); $stop = $limit <= 0; } } } fclose($fp); return $returnHeader ? array($header,$content) : $content; } } ?>
호출도 매우 간단합니다. 간단한 예:
코드는 다음과 같습니다:
echo httpRequest('http://www.baidu.com');
요약: 위 내용은 이 글의 전체 내용입니다. 모든 분들의 학습에 도움이 되기를 바랍니다.
관련 권장 사항:
에 대한 php 메서드위 내용은 PHP에서 httpRequest를 구현하는 방법을 간략하게 설명하세요.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!