91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么解決php curl無法post的問題

發布時間:2021-09-16 17:13:20 來源:億速云 閱讀:122 作者:chen 欄目:編程語言

這篇文章主要講解了“怎么解決php curl無法post的問題”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么解決php curl無法post的問題”吧!

1、打開相應的PHP代碼文件。

2、通過“$post_data = "username=bob&key=12345";$response = http_req(...)”方式提交數據即可。

實例

function http_req($http_type, $method, $url, $data)
{
    $ch = curl_init();
    if (strstr($http_type, 'https')) {
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
    }
    if ($method == 'post') {
        curl_setopt($ch, CURLOPT_POST, 1);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
    } else {
        $url = $url . '?' . $data;
    }
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_TIMEOUT, 100000);//超時時間
    try {
        $ret = curl_exec($ch);
    } catch (Exception $e) {
        curl_close($ch);
       return json_encode(array('ret' => 0, 'msg' => 'failure'));
    }
    curl_close($ch);
    return $ret;
}
  //第一種提交方式在遇到post_data 中包含@等一些符號時會出現提交失敗的情況
  $url = "http://localhost/web_services.php";
 $post_data = array ("username" => "bob","key" => "12345");
 $response = http_req('http', 'post', $url, $post_data );
 //第二種提交方式可以避免
 $url = "http://localhost/web_services.php";
 $post_data = "username=bob&key=12345";
 $response = http_req('http', 'post', $url, $post_data );

感謝各位的閱讀,以上就是“怎么解決php curl無法post的問題”的內容了,經過本文的學習后,相信大家對怎么解決php curl無法post的問題這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

青岛市| 昔阳县| 金川县| 法库县| 邯郸市| 错那县| 章丘市| 白山市| 无极县| 灵川县| 苏尼特左旗| 綦江县| 社会| 门头沟区| 江口县| 鸡泽县| 丰台区| 汾西县| 磴口县| 呼和浩特市| 开平市| 松滋市| 弋阳县| 铜鼓县| 平远县| 武鸣县| 枝江市| 崇礼县| 秦安县| 小金县| 获嘉县| 双鸭山市| 台南市| 建水县| 莱芜市| 平舆县| 阜城县| 武宁县| 仁怀市| 鹿泉市| 宜都市|