欧美高清视频一区,亚洲福利视频,国产精品自产拍在线观看桃花,国产精品自产拍在线观看桃花,久久国产三级,一区二区三区日韩在线,影音先锋日本

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

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

模擬get或post

2016.03.14 | 2866閱讀 | 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ā)表評論

大化| 奉贤区| 文昌市| 四子王旗| 谷城县| 瑞安市| 久治县| 于田县| 寿阳县| 孝昌县| 惠州市| 襄垣县| 阿拉善右旗| 个旧市| 光泽县| 泰顺县| 外汇| 葵青区| 奉新县| 仪陇县| 新龙县| 岗巴县| 建昌县| 仪征市| 吴桥县| 汝南县| 武乡县| 石门县| 岳池县| 南溪县| 喀喇沁旗| 正定县| 吉安市| 马山县| 佳木斯市| 阿荣旗| 合作市| 浦东新区| 保亭| 海口市| 卢龙县|