溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php怎么以post形式發(fā)送xml

發(fā)布時間:2022-10-18 16:37:32 來源:億速云 閱讀:128 作者:iii 欄目:編程語言

本文小編為大家詳細介紹“php怎么以post形式發(fā)送xml”,內容詳細,步驟清晰,細節(jié)處理妥當,希望這篇“php怎么以post形式發(fā)送xml”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

方法一,使用curl:
$xml_data = <xml>...</xml>";
 $url = 'http://www.itlearner.com';
 $header[] = "Content-type: text/xml";//定義content-type為xml
 curl_setopt($ch, CURLOPT_URL, $url);
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
 curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
 curl_setopt($ch, CURLOPT_POST, 1);
 curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_data);
 $response = curl_exec($ch);
 if(curl_errno($ch))
 {
     print curl_error($ch);
 }
 curl_close($ch);
方法二,使用fsockopen:
$fp = fsockopen($server_ip, 80);
 fputs($fp, "POST $path HTTP/1.0\r\n");
 fputs($fp, "Host: $server\r\n");
 fputs($fp, "Content-Type: text/xml\r\n");
 fputs($fp, "Content-Length: $contentLength\r\n");
 fputs($fp, "Connection: close\r\n");
 fputs($fp, "\r\n"); // all headers sent
 fputs($fp, $xml_data);
 $result = '';
 while (!feof($fp)) {
 $result .= fgets($fp, 128);
 }
 return $result;

讀到這里,這篇“php怎么以post形式發(fā)送xml”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI