sendxml.php
<?php
$xml_data = '...';//傳送的xml
$url = 'http://localhost/getxml.php';//接收xml位址
$header = "content-type: text/xml";//定義content-type為xml
$ch = curl_init(); //初始化curl
curl_setopt($ch, curlopt_url, $url);//設定鏈結
curl_setopt($ch, curlopt_returntransfer, 1);//設定是否返回資訊
curl_setopt($ch, curlopt_httpheader, $header);//設定http頭
curl_setopt($ch, curlopt_post, 1);//設定為post方式
curl_setopt($ch, curlopt_postfields, $xml_data);//post資料
$response = curl_exec($ch);//接收返回資訊
if(curl_errno($ch))
curl_close($ch); //關閉curl鏈結
echo $response;//顯示返回資訊
?>
getxml.php
<?php
$xml = file_get_contents('php://input');//監聽是否有資料傳入
if($xml!='')
die('fail');//沒有資料則直接返回失敗資訊
?>
Ajax非同步傳輸與PHP實現互動示例
背景 前台頁面兩個select框,乙個與學院關聯,另乙個與專業關聯,現需要選擇學院select框後,顯示學院相關資訊,且專業select下面僅有屬於該學院的程式設計客棧專業名稱。也就是實現乙個二級聯動效果。兩個select裡面分別定義onchange事件,事件中利用ajax的get方法向後台php遞...
銀行介面Socket傳輸XML
因為專案需要,行方不提供http介面,只提供socket介面,並且用xml格式傳輸 並且沒有聯調,所以本地建立server端和client端進行本地除錯 請求報文 zfb2c token 響應報文 zfb2c token access token skdlajtfoiewjflkdsajflkdsa...
PHP對XML增刪改查功能實現
這是 主頁,簡單優化了一下,不過還是巨醜務必,見諒見諒,用到了php的 php外掛程式,很簡單,但是功能也有限,但是對於我們使用來說已經足夠了。所有資訊 xml xml load file note.xml echo xml getname foreach xml children as child...