动物总动员电影免费观看,国产一线天在线观看,亚洲成人精品久久,www.夜色av.com,caoporn国产一区二区,国产精品毛片一区视频播不卡,91av456

龍巖易富通網(wǎng)絡(luò)科技有限公司

龍巖小程序開發(fā),龍巖分銷系統(tǒng)

模擬get或post

2016.03.14 | 2574閱讀 | 0條評論 | php

CURL方式:

public function httpCurl($url,$data) {

$curl = curl_init ();

curl_setopt ( $curl, CURLOPT_RETURNTRANSFER, true );

curl_setopt ( $curl, CURLOPT_TIMEOUT, 500 );

curl_setopt ( $curl, CURLOPT_SSL_VERIFYPEER, false );

curl_setopt ( $curl, CURLOPT_SSL_VERIFYHOST, false );

curl_setopt ( $curl, CURLOPT_URL, $url );

if (!empty($data))

{

  curl_setopt ( $curl, CURLOPT_POST, 1 );

  curl_setopt ( $curl, CURLOPT_POSTFIELDS, $data );

}

$res = curl_exec ( $curl );

curl_close ( $curl );

return $res;

}




數(shù)據(jù)流方式:

/**

*Huang Jing

*2016年1月12日 10:51:29

*Http 客戶端   實例

*Post方法

******/


class HttpClient {

  //post方法提交

  public static function post2($url, $data) {  //file_get_content

        $postdata = http_build_query( $data );

        $opts = array('http' =>

                      array(

                          'method'  => 'POST',

                          'header'  => 'Content-type:application/x-www-form-urlencoded;charset=GBK',

                          'content' => $postdata

                      )

        );

 

        $context = stream_context_create($opts);

        $result = file_get_contents($url, false, $context);

         return  $result;

    }

}


贊 (

發(fā)表評論

土默特右旗| 灵丘县| 景洪市| 元朗区| 瑞昌市| 来安县| 连云港市| 大同县| 兴安盟| 临武县| 三门县| 吉隆县| 阳高县| 阿克陶县| 沙雅县| 苗栗市| 荔波县| 万州区| 桐梓县| 金堂县| 新蔡县| 邓州市| 界首市| 大方县| 汉寿县| 平潭县| 凤城市| 东乡族自治县| 新巴尔虎左旗| 扬州市| 乐亭县| 重庆市| 金堂县| 伊吾县| 奉新县| 清苑县| 壤塘县| 桦南县| 会理县| 鄂伦春自治旗| 天等县|