php curl請求失敗的解決方法:1、開啟對應的PHP檔案;2、設定「curl_setopt($ch, CURLOPT_FORBID_REUSE, 1)...」即可。
本文操作環境:Windows7系統,PHP7.1版,Dell G3電腦。
如何解決php curl請求失敗問題?
php curl 發送請求失敗問題
前提:運行在命令列模式中(沒有逾時設定)
多次呼叫curl ,可能出現發送請求失敗的問題, 原因可以是curl連線複用,使用的是快取池中的建立。
解決方法:設定curl 參數,
curl_setopt($ch, CURLOPT_FORBID_REUSE, 1); curl_setopt($ch, CURLOPT_FRESH_CONNECT, 1);
參考連結:https://www.php.net/manual/zh/function.curl-setopt.php
#例外一個參考case:
if you would like to send xml request to a server (lets say, making a soap proxy), you have to set <?php curl_setopt($ch, CURLOPT_HTTPHEADER, Array("Content-Type: text/xml")); ?> makesure you watch for cache issue: the below code will prevent cache... <?php curl_setopt($ch, CURLOPT_FORBID_REUSE, 1); curl_setopt($ch, CURLOPT_FRESH_CONNECT, 1); ?>
推薦學習:《PHP影片教學》
以上是如何解決php curl請求失敗問題的詳細內容。更多資訊請關注PHP中文網其他相關文章!