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的,建議你列印一下。
謝謝邀請。提交之後報錯?建議你在提交之後做個斷點輸出看看是不是有什麼錯誤資訊。具體原因只能一點點的輸出找找看