首頁  >  文章  >  後端開發  >  如何解決php curl請求失敗問題

如何解決php curl請求失敗問題

藏色散人
藏色散人原創
2021-12-27 09:52:304805瀏覽

php curl請求失敗的解決方法:1、開啟對應的PHP檔案;2、設定「curl_setopt($ch, CURLOPT_FORBID_REUSE, 1)...」即可。

如何解決php curl請求失敗問題

本文操作環境: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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn