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

藏色散人
發布: 2023-03-14 15:42:02
原創
4817 人瀏覽過

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中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板