PHP 通過CURL POST XML資料

來源:互聯網
上載者:User
PHP 通過CURL post xml資料到遠程地址
1、CURL POST方法
$ch = curl_init();
$timeout = 30;
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, Array("Content-Type:text/xml; charset=utf-8"));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 0);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);//Post提交的資料包
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
curl_setopt($ch, CURLOPT_HEADER, 0);
$result = curl_exec($ch);

curl_close($ch);
header('Content-Type:text/xml; charset=utf-8');

2、下面是XML資料

CCadd2BJA0郵政標快公司名稱姓名行動電話省份城市地區詳細地址公司名稱姓名行動電話省份城市地區詳細地址CTEST001測試物品一550CTEST002測試物品二550121333312121313212

提交之後 一直報錯
This page contains the following errors:

error on line 1 at column 50: Space required after the Public Identifier
Below is a rendering of the page up to the first error.

查詢XML報文資料資訊 沒有什麼錯誤,求大俠解決 是CURL方法寫的不對 還是其他問題

回複內容:

PHP 通過CURL post xml資料到遠程地址
1、CURL POST方法
$ch = curl_init();
$timeout = 30;
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, Array("Content-Type:text/xml; charset=utf-8"));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 0);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);//Post提交的資料包
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
curl_setopt($ch, CURLOPT_HEADER, 0);
$result = curl_exec($ch);

curl_close($ch);
header('Content-Type:text/xml; charset=utf-8');

2、下面是XML資料

CCadd2BJA0郵政標快公司名稱姓名行動電話省份城市地區詳細地址公司名稱姓名行動電話省份城市地區詳細地址CTEST001測試物品一550CTEST002測試物品二550121333312121313212

提交之後 一直報錯
This page contains the following errors:

error on line 1 at column 50: Space required after the Public Identifier
Below is a rendering of the page up to the first error.

查詢XML報文資料資訊 沒有什麼錯誤,求大俠解決 是CURL方法寫的不對 還是其他問題

$ch = curl_init();$timeout = 30; curl_setopt($ch, CURLOPT_URL, $url);curl_setopt($ch, CURLOPT_POST, 1);curl_setopt($ch, CURLOPT_HTTPHEADER, Array("Content-Type:text/xml; charset=utf-8"));curl_setopt($ch, CURLOPT_RETURNTRANSFER, 0); curl_setopt($ch, CURLOPT_POSTFIELDS, $data);//Post提交的資料包curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);curl_setopt($ch, CURLOPT_HEADER, 0);$result = curl_exec($ch);curl_close($ch);echo $result;

有時候遠程伺服器錯誤返回的是類似於500錯誤一樣,這時候返回的資料就不是xml的,建議你列印一下。

謝謝邀請。提交之後報錯?建議你在提交之後做個斷點輸出看看是不是有什麼錯誤資訊。具體原因只能一點點的輸出找找看

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.