我不能爲了我的生活弄清楚如何在字符串中保留XML的格式,即使當回顯字符串$data_string
我得到的XML被剝離,只剩下值。用PHP XML捲曲請求
然後,我需要能夠通過PHP與該字符串做一個CURL請求,我不知道我是否有正確的設置。
代碼:
$data_string = '<test><name>John Doe</name><age>22</age><city>seattle</age></test>';
$curl = curl_init($baseUrl);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, "xmlRequest=" . $data_string);
curl_setopt($curl, CURLOPT_HTTPHEADER, array(
"Content-Length: " . strlen($data_string),
"X-DocuSign-Authentication: $header",
"Content-Type: text/xml",
"Accept: text/xml")
);
$response = curl_exec($curl);
測試:
echo $data_string;
結果:
John Doe22seattle
「我不能爲我的生命」 :)))))) –
嘗試檢查你的頁面」的源代碼,以逃避HTML字符重新進入,通常CTRL + U –