-
-
- header("Content-type: text/html; charset=utf8");
- /*
- * 提交请要求
- * @param $header array 必要な構成のドメイン名等header設定 array("Host: devzc.com");
- * @param $data string 要取引データ 'user=xxx&qq=xxx&id=xxx&post=xxx'....
- * @param $url string 要取引url 'http://192.168.1.12/xxx/xxx/api/';
- * @edit: bbs.it-home.org
- */
- functioncurl_post($header,$data,$url)
- {
- $ch =curl_init();
- $res=curl_setopt($ch,CURLOPT_URL,$url);
- var_dump($res);
- curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,FALSE);
- curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,FALSE);
- curl_setopt($ch, CURLOPT_HEADER, 0);
- curl_setopt($ch, CURLOPT_POST, 1);
- curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($ch, CURLOPT_HTTPHEADER,$header);
- $result =curl_exec ($ch);
- curl_close($ch);
- if ($result == NULL) {
- return 0;
- }
- return $result;
- }
- $url = 'http://127.0.0.1' ;
- $header = array("ホスト:127.0.0.1",
- "Content-Type:application/x-www-form-urlencoded",
- 'リファラー:http://127.0 .0.1/toolindex.xhtml',
- 'ユーザーエージェント: Mozilla/4.0 (互換性あり。 MSIE .0; Windows NT 6.1;トライデント/4.0; SLCC2;)');
$data = 'tools_id=1&env=gamma';
- echo "argv:$data
"; - $ret =curl_post($header, $data ,$url);
- $utf8 = iconv('GB2312', 'UTF-8//IGNORE', $ret);
- echo 'return:
'.nl2br($utf8 ).' ';
- ?>
-
复制代
|