>  기사  >  백엔드 개발  >  PHP의 강력한 CURL POST 클래스

PHP의 강력한 CURL POST 클래스

*文
*文원래의
2017-12-29 17:57:081809검색

이 글에서는 주로 강력한 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;

  }

}

?>

관련 추천:

php는 스누피와 컬 시뮬레이션 로그인 예시를 사용해 공유합니다

PHP 컬 변장 정보

P HP Learn CURL 크롤러 예

위 내용은 PHP의 강력한 CURL POST 클래스의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.