您好,登錄后才能下訂單哦!
這篇文章給大家介紹怎么在php中使用curl模擬post提交數據,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
<?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/';*/function curl_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("Host:127.0.0.1", "Content-Type:application/x-www-form-urlencoded", 'Referer:http://127.0.0.1/toolindex.xhtml', 'User-Agent: Mozilla/4.0 (compatible; MSIE .0; Windows NT 6.1; Trident/4.0; SLCC2;)'); $data = 'tools_id=1&env=gamma';echo "argv:$data<br>"; $ret = curl_post($header, $data,$url);$utf8 = iconv('GB2312', 'UTF-8//IGNORE', $ret);echo 'return:<br>'.nl2br($utf8 ).'<br>';?>
關于怎么在php中使用curl模擬post提交數據就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。