ホームページ  >  記事  >  バックエンド開発  >  PHP の強力な CURL POST クラス

PHP の強力な CURL POST クラス

*文
*文オリジナル
2017-12-29 17:57:081807ブラウズ

この記事では主に強力な PHP POST データ送信クラスを詳しく紹介します。コードは簡潔で、興味のある方は参考にしてください。お役に立てれば幸いです。

具体的な内容は以下の通りです

<?php 
class Request{
  public static function post($url, $post_data = &#39;&#39;, $timeout = 5){//curl

    $ch = curl_init();
 curl_setopt ($ch, CURLOPT_URL, $url);
    curl_setopt ($ch, CURLOPT_POST, 1);
    if($post_data != &#39;&#39;){


      curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);

    }
    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); 
    curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
    curl_setopt($ch, CURLOPT_HEADER, false);
 $file_contents = curl_exec($ch);
    curl_close($ch);
    return $file_contents;

  }

  public static function post2($url, $data){//file_get_content
    $postdata = http_build_query(
      $data
    );
    $opts = array(&#39;http&#39; =>
           array(
             &#39;method&#39; => &#39;POST&#39;,
             &#39;header&#39; => &#39;Content-type: application/x-www-form-urlencoded&#39;,
             &#39;content&#39; => $postdata
           )

    );

    $context = stream_context_create($opts);
    $result = file_get_contents($url, false, $context);
    return $result;

  }
 public static function post3($host,$path,$query,$others=&#39;&#39;){//fsocket

    $post="POST $path HTTP/1.1\r\nHost: $host\r\n";
    $post.="Content-type: application/x-www-form-";
    $post.="urlencoded\r\n${others}";
    $post.="User-Agent: Mozilla 4.0\r\nContent-length: ";
    $post.=strlen($query)."\r\nConnection: close\r\n\r\n$query";
    $h=fsockopen($host,80);
    fwrite($h,$post);
    for($a=0,$r=&#39;&#39;;!$a;){
        $b=fread($h,8192); 
        $r.=$b;
        $a=(($b==&#39;&#39;)?1:0); 

      }
    fclose($h);
    return $r;

  }

}

?>

関連する推奨事項:

ログインをシミュレートするためにスヌーピーとcurlを使用するphpの例の共有

PHPのcurl偽装ソース情報

PHPを学ぶCURL クローラーの例

以上がPHP の強力な CURL POST クラスの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

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