php httpClientクラス

WBOY
WBOYオリジナル
2016-07-25 08:43:311482ブラウズ
  1. class httpClient {
  2. public $buffer = null; // バッファは返された文字列を取得します
  3. public $referer = null // リファラーは HTTP_REFERER の URL を設定します
  4. public $response = null; ; // サーバーのレスポンスヘッダー情報
  5. public $request = null // サーバーに送信されるリクエストヘッダー情報
  6. private $args = null;
  7. public static function init(&$instanceof, $args = array() ) {
  8. return $instanceof = new self($args);
  9. }
  10. プライベート関数 __construct($args = array()) {
  11. if(!is_array($args)) $args = array();
  12. $ this ->args = $args;
  13. if(!empty($this->args['debugging'])) {
  14. ob_end_clean();
  15. set_time_limit(0);
  16. header('Content-Type: text/ plain ; charset=utf-8');
  17. }
  18. }
  19. public function get($url, $data = null, $cookie = null) {
  20. $parse = parse_url($url);
  21. $url 。 = isset($parse['query']) ? '&'. $data : ( $data ? '?'. $data : '' );
  22. $host = $parse['host'];
  23. $header = 'ホスト: '. $host. "\r\n";
  24. $header .= '接続: 閉じる'. "\r\n";
  25. $header .= '受け入れる: */*'。 \ n";
  26. $header .= 'ユーザーエージェント: '. ( isset($this->args['userAgent']) ? $this->args['userAgent'] : $_SERVER['HTTP_USER_AGENT' ]). "\r\n";
  27. $header .= 'DNT: 1'. "\r\n";
  28. if($cookie) $header .= '$cookie. n ";
  29. if($this->referer) $header .= 'リファラー: '. $this->referer. "\r\n";
  30. $options = array();
  31. $options[' http ']['method'] = 'GET';
  32. $options['http']['header'] = $header;
  33. $response = get_headers($url);
  34. $this->request = $ header ;
  35. $this->response = implode("\r\n", $response);
  36. $context = stream_context_create($options);
  37. return $this->buffer = file_get_contents($url, false, $ context );
  38. }
  39. public function post($url, $data = null, $cookie = null) {
  40. $parse = parse_url($url);
  41. $host = $parse['host'];
  42. $header = 'ホスト: '. $host. "\r\n";
  43. $header .= '接続: 閉じる'. "\r\n";
  44. $header .= '受け入れる: */*'。 " \r\n";
  45. $header .= 'ユーザーエージェント: '. ( isset($this->args['userAgent']) ? $this->args['userAgent'] : $_SERVER[ ' HTTP_USER_AGENT'] ). "\r\n";
  46. $header .= 'Content-Type: application/x-www-form-urlencoded'. "\r\n";
  47. $header .= 'DNT: 1 ' . "\r\n";
  48. if($cookie) $header .= 'Cookie: '. $cookie. "\r\n";
  49. if($this->referer) $header .= 'リファラー: '. $this->referer. "\r\n";
  50. if($data) $header .= 'Content-Length: '. "\r\n";
  51. $ options = array();
  52. $options['http']['method'] = 'POST';
  53. $options['http']['header'] = $header;
  54. if($data) $options[ ' http']['content'] = $data;
  55. $response = get_headers($url);
  56. $this->request = $header;
  57. $this->response = implode("\r\n " , $response);
  58. $context = stream_context_create($options);
  59. return $this->buffer = file_get_contents($url, false, $context);
  60. }
  61. }
  62. httpClient::init($ httpClient , array( 'debugging' => true , 'userAgent' => 'MSIE 15.0' ));
  63. $httpClient->get('http://www.baidu.com', 'name=haowei' ) ;
  64. echo $httpClient->request; // リクエストヘッダー情報を取得します
  65. echo $httpClient->response; // レスポンスヘッダー情報を取得します
  66. echo $httpClient->buffer; // Web ページのコンテンツを取得します
  67. $ httpClient->get('http://accounts.haowei.me/ServiceLogin/', 'hash='. $time, 'uid=1;users=admin;')
  68. echo $httpClient->buffer ;
  69. コードをコピー

php、httpクライアント
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。