php curl post資料遺失是因為在string型別中,&符號是分割參數用的,所以會導致遺失情況,其解決方法就是使用Array的方式提交即可。
本文操作環境:Windows7系統、PHP7.1版,DELL G3電腦
如何解決curl php post 遺失問題?
關於PHP Curl POST 資料遺失的問題
$ch = curl_init (); curl_setopt ( $ch, CURLOPT_URL, $uri ); curl_setopt ( $ch, CURLOPT_POST, 1 ); curl_setopt ( $ch, CURLOPT_HEADER, 0 ); curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 ); curl_setopt ( $ch, CURLOPT_POSTFIELDS, $data ); $return = curl_exec ( $ch ); curl_close ( $ch );
$data參數有兩種類型:string/array
例如:我們想提交兩個資料
$title = '我是标题'; $content = '<a href="http://www.baidu.com?a=1&b=1">点我百度一下</a>';
當類型為string的時候
$data = 'title=这是标题&content=<a href="http://www.baidu.com?a=1&b=1">点我百度一下</a>';
提交後我們會發現$_POST['content']並沒有出現我們想要的1552f1ccb0bfbba19f5dd9237290201e點我百度5db79b134e9f6b82c0b36e0489ee08ed,但出現了Array(
[title] => 我是标题
[content] => <a href="http://www.baidu.com?a=1
[b] => 1">点我百度一下</a>
) 這時我們只要使用Array的方式提交就沒有問題了 推薦學習:《PHP影片教學》 以上是如何解決curl php post 遺失問題的詳細內容。更多資訊請關注PHP中文網其他相關文章!