真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

php如何生成xml數(shù)據(jù) php xml轉(zhuǎn)數(shù)組

php生成xml代碼快說把

使用PHP DOMDocument創(chuàng)建動態(tài)XML文件

創(chuàng)新互聯(lián)公司是一家朝氣蓬勃的網(wǎng)站建設(shè)公司。公司專注于為企業(yè)提供信息化建設(shè)解決方案。從事網(wǎng)站開發(fā),網(wǎng)站制作,網(wǎng)站設(shè)計,網(wǎng)站模板,微信公眾號開發(fā),軟件開發(fā),微信平臺小程序開發(fā),十余年建站對崗?fù)?/a>等多個行業(yè),擁有豐富的網(wǎng)站建設(shè)經(jīng)驗。

當(dāng)處理基于XML應(yīng)用程序時,開發(fā)者經(jīng)常需要建立XML編碼數(shù)據(jù)結(jié)構(gòu)。例如,Web中基于用戶輸入的XML狀態(tài)模板,服務(wù)器請求XML語句,以及基于運行時間參數(shù)的客戶響應(yīng)。

盡管XML數(shù)據(jù)結(jié)構(gòu)的構(gòu)建比較費時,但如果使用成熟的PHP DOM應(yīng)用程序接口,一切都會變得簡單明了。本文將向你介紹PHP DOM應(yīng)用程序接口的主要功能,演示如何生成一個正確的XML完整文件并將其保存到磁盤中。

創(chuàng)建文檔類型聲明

一般而言,XML聲明放在文檔頂部。在PHP中聲明十分簡單:只需實例化一個DOM文檔類的對象并賦予它一個版本號。查看程序清單A:

程序清單 A

復(fù)制代碼 代碼如下:

?php

// create doctype

$dom = new DOMDocument("1.0");

// display document in browser as plain text

// display document in browser as plain text

// for readability purposes

header("Content-Type: text/plain");

// save and display tree

echo $dom-saveXML();

?

請注意DOM文檔對象的saveXML()方法。稍后我再詳細(xì)介紹這一方法,現(xiàn)在你只需要簡單認(rèn)識到它用于輸出XML文檔的當(dāng)前快照到一個文件或瀏覽器。在本例,為增強可讀性,我已經(jīng)將ASCII碼文本直接輸出至瀏覽器。在實際應(yīng)用中,可將以text/XML頭文件發(fā)送到瀏覽器。

如在瀏覽器中查看輸出,你可看到如下代碼:

?xml version="1.0"?

添加元素和文本節(jié)點

XML真正強大的功能是來自其元素與封裝的內(nèi)容。幸運的是,一旦你初始化DOM文檔,很多操作變得很簡單。此過程包含如下兩步驟:

對想添加的每一元素或文本節(jié)點,通過元素名或文本內(nèi)容調(diào)用DOM文檔對象的createElement()或createTextNode()方法。這將創(chuàng)建對應(yīng)于元素或文本節(jié)點的新對象。

通過調(diào)用節(jié)點的appendChild()方法,并把其傳遞給上一步中創(chuàng)建的對象,并在XML文檔樹中將元素或文本節(jié)點添加到父節(jié)點。

以下范例將清楚地演示這2步驟,請查看程序清單B。

程序清單 B

復(fù)制代碼 代碼如下:

?php

// create doctype

$dom = new DOMDocument("1.0");

// display document in browser as plain text

// for readability purposes

header("Content-Type: text/plain");

// create root element

$root = $dom-createElement("toppings");

$dom-appendChild($root);

// create child element

$item = $dom-createElement("item");

$root-appendChild($item);

// create text node

$text = $dom-createTextNode("pepperoni");

$item-appendChild($text);

// save and display tree

echo $dom-saveXML();

?

這 里,我首先創(chuàng)建一個名字為toppings的根元素,并使它歸于XML頭文件中。然后,我建立名為item的元素并使它 歸于根元素。最后,我又創(chuàng)建一個值為“pepperoni”的文本節(jié)點并使它歸于item元素。最終結(jié)果如下:

復(fù)制代碼 代碼如下:

?xml version="1.0"?

toppings

itempepperoni/item

/toppings

如果你想添加另外一個topping,只需創(chuàng)建另外一個item并添加不同的內(nèi)容,如程序清單C所示。

程序清單C

復(fù)制代碼 代碼如下:

?php

// create doctype

$dom = new DOMDocument("1.0");

// display document in browser as plain text

// for readability purposes

header("Content-Type: text/plain");

// create root element

$root = $dom-createElement("toppings");

$dom-appendChild($root);

// create child element

$item = $dom-createElement("item");

$root-appendChild($item);

// create text node

$text = $dom-createTextNode("pepperoni");

$item-appendChild($text);

// create child element

$item = $dom-createElement("item");

$root-appendChild($item);

// create another text node

$text = $dom-createTextNode("tomato");

$item-appendChild($text);

// save and display tree

echo $dom-saveXML();

?

以下是執(zhí)行程序清單C后的輸出:

復(fù)制代碼 代碼如下:

?xml version="1.0"?

toppings

itempepperoni/item

itemtomato/item

/toppings

添加屬性

通過使用屬性,你也可以添加適合的信息到元素。對于PHP DOM API,添加屬性需要兩步:首先用DOM文檔對象的createAttribute()方法創(chuàng)建擁有此屬性名字的節(jié)點,然后將文檔節(jié)點添加到擁有屬性值的屬性節(jié)點。詳見程序清單D。

程序清單 D

復(fù)制代碼 代碼如下:

?php

// create doctype

$dom = new DOMDocument("1.0");

// display document in browser as plain text

// for readability purposes

header("Content-Type: text/plain");

// create root element

$root = $dom-createElement("toppings");

$dom-appendChild($root);

// create child element

$item = $dom-createElement("item");

$root-appendChild($item);

// create text node

$text = $dom-createTextNode("pepperoni");

$item-appendChild($text);

// create attribute node

$price = $dom-createAttribute("price");

$item-appendChild($price);

// create attribute value node

$priceValue = $dom-createTextNode("4");

$price-appendChild($priceValue);

// save and display tree

echo $dom-saveXML();

?

輸出如下所示:

復(fù)制代碼 代碼如下:

?xml version="1.0"?

toppings

item price="4"pepperoni/item

/toppings

添加CDATA模塊和過程向?qū)?/p>

雖然不經(jīng)常使用CDATA模塊和過程向?qū)?,但是通過調(diào)用DOM文檔對象的createCDATASection()和createProcessingInstruction()方法, PHP API 也能很好地支持CDATA和過程向?qū)?,請見程序清單E。

程序清單 E

復(fù)制代碼 代碼如下:

?php

// create doctype

// create doctype

$dom = new DOMDocument("1.0");

// display document in browser as plain text

// for readability purposes

header("Content-Type: text/plain");

// create root element

$root = $dom-createElement("toppings");

$dom-appendChild($root);

// create child element

$item = $dom-createElement("item");

$root-appendChild($item);

// create text node

$text = $dom-createTextNode("pepperoni");

$item-appendChild($text);

// create attribute node

$price = $dom-createAttribute("price");

$item-appendChild($price);

// create attribute value node

$priceValue = $dom-createTextNode("4");

$price-appendChild($priceValue);

// create CDATA section

$cdata = $dom-createCDATASection(" Customer requests that pizza be sliced into 16 square pieces ");

$root-appendChild($cdata);

// create PI

$pi = $dom-createProcessingInstruction("pizza", "bake()");

$root-appendChild($pi);

// save and display tree

echo $dom-saveXML();

?

輸出如下所示:

復(fù)制代碼 代碼如下:

?xml version="1.0"?

toppings

item price="4"pepperoni/item

![CDATA[

Customer requests that pizza be sliced into 16 square pieces

]]

?pizza bake()?

/toppings

保存結(jié)果

一旦已經(jīng)實現(xiàn)你的目標(biāo),就可以將結(jié)果保存在一個文件或存儲于PHP的變量。通過調(diào)用帶有文件名的save()方法可以將結(jié)果保存在文件中,而通過調(diào)用saveXML()方法可存儲于PHP的變量。請參考以下實例(程序清單F):

程序清單 F

復(fù)制代碼 代碼如下:

?php

// create doctype

$dom = new DOMDocument("1.0");

// create root element

$root = $dom-createElement("toppings");

$dom-appendChild($root);

$dom-formatOutput=true;

// create child element

$item = $dom-createElement("item");

$root-appendChild($item);

// create text node

$text = $dom-createTextNode("pepperoni");

$item-appendChild($text);

// create attribute node

$price = $dom-createAttribute("price");

$item-appendChild($price);

// create attribute value node

$priceValue = $dom-createTextNode("4");

$price-appendChild($priceValue);

// create CDATA section

$cdata = $dom-createCDATASection(" Customer requests that pizza be

sliced into 16 square pieces ");

$root-appendChild($cdata);

// create PI

$pi = $dom-createProcessingInstruction("pizza", "bake()");

$root-appendChild($pi);

// save tree to file

$dom-save("order.xml");

// save tree to string

$order = $dom-save("order.xml");

?

下面是實際的例子,大家可以測試下。

xml.php(生成xml)

復(fù)制代碼 代碼如下:

?

$conn = mysql_connect('localhost', 'root', '123456') or die('Could not connect: ' . mysql_error());

mysql_select_db('vdigital', $conn) or die ('Can\'t use database : ' . mysql_error());

$str = "SELECT id,username FROM `admin` GROUP BY `id` ORDER BY `id` ASC";

$result = mysql_query($str) or die("Invalid query: " . mysql_error());

if($result)

{

$xmlDoc = new DOMDocument();

if(!file_exists("01.xml")){

$xmlstr = "?xml version='1.0' encoding='utf-8' ?message/message";

$xmlDoc-loadXML($xmlstr);

$xmlDoc-save("01.xml");

}

else { $xmlDoc-load("01.xml");}

$Root = $xmlDoc-documentElement;

while ($arr = mysql_fetch_array($result)){

$node1 = $xmlDoc-createElement("id");

$text = $xmlDoc-createTextNode(iconv("GB2312","UTF-8",$arr["id"]));

$node1-appendChild($text);

$node2 = $xmlDoc-createElement("name");

$text2 = $xmlDoc-createTextNode(iconv("GB2312","UTF-8",$arr["username"]));

$node2-appendChild($text2);

$Root-appendChild($node1);

$Root-appendChild($node2);

$xmlDoc-save("01.xml");

}

}

mysql_close($conn);

?

test.php(應(yīng)用測試)

復(fù)制代碼 代碼如下:

?

$xmlDoc = new DOMDocument();

$xmlDoc-load("");

$x=$xmlDoc-getElementsByTagName('name');

for ($i=0; $i=$x-length-1; $i++)

{

if(strpos($x-item($i)-nodeValue,"fang")!==false)

{

echo $x-item($i)-parentNode-childNodes-item(1)-nodeValue;

}

}

?

php環(huán)境下如何生成xml文件?

header("Content-type:text/xml");

設(shè)置好這個后,把xml看錯是字符串,直接echo就可以。

為了比較準(zhǔn)確處理,建議還是用xml讀寫對象處理比較不容易出錯。最后依然是echo 輸出字符串。

如何通過PHP生成和獲取XML格式數(shù)據(jù)

1自己拼,XML編碼

?php

header('Content-type:text/xml');

echo "?xml version='1.0' encoding='utf-8'";

echo "book";

echo "PHP";

echo "namePHP程序開發(fā)范例寶典/name";

echo "price 單位='元/本'89.00/price";

echo "date2007-09-01/date";

echo "/PHP";

echo "/book";

?

拼接的效果

2從數(shù)據(jù)庫中查詢再拼XML編碼

?php

$dsn="mysql:host=localhost;dbname=test";

try {

$pdo = new PDO($dsn,'root','passwowd'); //初始化一個PDO對象,就是創(chuàng)建了數(shù)據(jù)庫連接對象$pdo

$query="select * from book"; ? //定義SQL語句

$pdo-query('set names utf8');

$result=$pdo-prepare($query); //準(zhǔn)備查詢語句

$result-execute(); ? ? ? //執(zhí)行查詢語句,并返回結(jié)果集

$arr='';

while($res=$result-fetch()){

$arr.='PHPid'.$res[0].'/idname'.$res[1].'/namedate'.$res[2].'/date'.'price'.$res[3].'/price/PHP';

}

echo "?xml version='1.0' encoding='utf-8'?book".$arr.'/book';

} catch (PDOException $e) {

die ("Error!: ".$e-getMessage()."br");

}

?

拼接的效果

3使用ajax獲取,DOM解析

!DOCTYPE html

html lang="en"

head

meta charset="UTF-8"

titlexml/title

/head

body

script

function check(){

var xhr=new XMLHttpRequest();

xhr.open('GET','xml.php');

xhr.onreadystatechange=function(){

if(xhr.readyState==4 xhr.status==200){

console.log(xhr.responseText);

//初始化 DOM解析對象

var domParser = new DOMParser();

//字符串解碼為對象

var xmlDoc = domParser.parseFromString(xhr.responseText,'text/xml');

//按標(biāo)簽名獲取元素 返回數(shù)組

var elements = xmlDoc.getElementsByTagName('PHP');

//拼接html格式字符串

var str ='trthid/ththname/ththdate/ththprice/th/tr';

for (var i=0;ielements.length;i++){

var id=elements[i].getElementsByTagName('id')[0].firstChild.nodeValue;

var name=elements[i].getElementsByTagName('name')[0].firstChild.nodeValue;

var date=elements[i].getElementsByTagName('date')[0].firstChild.nodeValue;

var price=elements[i].getElementsByTagName('price')[0].firstChild.nodeValue;

str+= 'trtd'+id+'/tdtd'+name+'/tdtd'+date+'/tdtd'+price+'/td/tr';

}

document.getElementById('table2').innerHTML=str;

}

};

xhr.send(null);

}

/script

button onclick="check();"點我/button

table id="table2" border="2" cellspacing="0"

/table

/body

/html

效果

1

2

補充:

使用JSON

1數(shù)據(jù)庫查詢,自己拼?JSON 編碼

?php

$dsn="mysql:host=localhost;dbname=test";

try {

$pdo = new PDO($dsn,'root','password'); //初始化一個PDO對象,就是創(chuàng)建了數(shù)據(jù)庫連接對象$pdo

$query="select * from book"; ? //定義SQL語句

$pdo-query('set names utf8');

$result=$pdo-prepare($query); //準(zhǔn)備查詢語句

$result-execute(); ? ? ? //執(zhí)行查詢語句,并返回結(jié)果集

$a=$arr='';

while($res=$result-fetch()){

$arr.='{"id":'.'"'.$res[0].'",'.'"name":'.'"'.$res[1].'",'.'"time":'.'"'.$res[2].'",'.'"jia":'.'"'.$res[3].'",'.'"zhe":'.'"'.$res[4].'",'.'"chu":'.'"'.$res[5].'"},';

}

echo $a="[".substr($arr,0,strlen($arr)-1)."]";

} catch (PDOException $e) {

die ("Error!: ".$e-getMessage()."br");

}

?

2數(shù)據(jù)庫查詢,函數(shù)?JSON 編碼

?php

$dsn="mysql:host=localhost;dbname=test";

try {

$pdo = new PDO($dsn,'root','password'); //初始化一個PDO對象,就是創(chuàng)建了數(shù)據(jù)庫連接對象$pdo

$query="select * from book"; ? //定義SQL語句

$pdo-query('set names utf8');

$result=$pdo-prepare($query); //準(zhǔn)備查詢語句

$result-execute(); ? ? ? //執(zhí)行查詢語句,并返回結(jié)果集

$res=$result-fetchAll();

//JSON 編碼

echo json_encode($res);

} catch (PDOException $e) {

die ("Error!: ".$e-getMessage()."br/");

}

?

效果

3ajax獲取,JSON解析

!DOCTYPE html

html lang="en"

head

meta charset="UTF-8"

titleJSON/title

/head

body

script

function check() {

var XHR = new XMLHttpRequest();

XHR.open('GET','JSON.php');

XHR.onreadystatechange = function (){

if(XHR.readyState == 4 XHR.status ==200){

var books =JSON .parse(XHR.responseText);

var books2='trthid/ththbookname/ththtime/ththprice/ththmarker/ththpublisher/th/tr'

for (var i=0;ibooks.length;i++){

books2+= 'trtd'+(books[i ].id)+'/tdtd'+(books[i ].name)+'/tdtd'+(books[i ].time)+'/tdtd'+(books[i ].jia)+'/tdtd'+(books[i ].zhe)+'/tdtd'+(books[i ].chu)+'/td/tr';

}

document.getElementById('table2').innerHTML=books2;

}

};

XHR.send(null);

}

/script

input type="button" value="點我" onclick="check();"

table id="table2" border="2" cellspacing="0"/table

/body

/html

php輸出xml內(nèi)容

PHP生成XML的方法很多,這里演示最基本,最簡單的字符串構(gòu)造法。就是使用字符串構(gòu)造或者拼接成xml數(shù)據(jù)格式,然后輸出或者生成xml文件。

?php

$data?=?array(

array(

'title'???=?'baidu',

'country'?=?'china',

'name'????=?'百度',

),

array(

'title'???=?'google',

'country'?=?'usa',

'name'????=?'谷歌',

)

);

//構(gòu)造xml數(shù)據(jù)格式

$xml?=?"?xml?version=\"1.0\"?encoding=\"utf-8\"?\n";

$xml?.=?"data\n";

foreach?($data?as?$itm)?{

//循環(huán)構(gòu)造xml單項

$item?=?"item\n";

$item?.=?"title"?.?$itm['title']?.?"/title\n";

$item?.=?"country"?.?$itm['country']?.?"/country\n";

$item?.=?"?name"?.?$itm['name']?.?"/name\n";

$item?.=?"/item\n";

$xml?.=$item;

}

$xml?.=?"/data\n";

//輸出xml數(shù)據(jù)

echo?$xml;

?

生成的數(shù)據(jù)格式如下:

如何用php從數(shù)據(jù)庫讀取數(shù)據(jù)并生成xml文件

我的思路是,直接使用動態(tài)的xml,讓flash讀取這個文檔,這樣就不用實時的去生成xml文件了。當(dāng)然,這個xml文件是.php格式的,所以你必須在flash中吧讀取的文件地址改成php的,就跟你寫一個php頁面一樣,不同的是這個php文件輸出的內(nèi)容是一個xml格式的文本。

比如你現(xiàn)在建立文件 xml.php

?php

echo "?xml version=\"1.0\" encoding=\"utf-8\"?

gallery

settings";

//若此處也有動態(tài)信息 按需要進(jìn)行調(diào)用

echo"/settings

items";

//在此循環(huán)你的圖片數(shù)據(jù)

$data = ??

while( $data ) {

echo "item source=\"".$data['source']."\" description=\"".$data['description']."\" /";

}

echo '/items';

?

PHP生成和獲取XML格式數(shù)據(jù)

在做數(shù)據(jù)接口時 我們通常要獲取第三方數(shù)據(jù)接口或者給第三方提供數(shù)據(jù)接口 而這些數(shù)據(jù)格式通常是以XML或者JSON格式傳輸 本文將介紹如何使用PHP生成XML格式數(shù)據(jù)供第三方調(diào)用以及如何獲取第三方提供的XML數(shù)據(jù)

生成XML格式數(shù)據(jù)

我們假設(shè)系統(tǒng)中有一張學(xué)生信息表student 需要提供給第三方調(diào)用 并有id name sex age分別記錄學(xué)生的姓名 性別 年齡等信息

CREATE TABLE `student` (

`id` int( ) NOT NULL auto_increment

`name` varchar( ) NOT NULL

`sex` varchar( ) NOT NULL

`age` *** allint( ) NOT NULL default

PRIMARY KEY? (`id`)

) ENGINE=MyISAM? DEFAULT CHARSET=utf ;

首先 建立createXML php文件 先連接數(shù)據(jù)庫 獲取數(shù)據(jù)

include_once ( connect php ) //連接數(shù)據(jù)庫

$sql = select * from student ;

$result = mysql_query($sql) or die( Invalid query: mysql_error())

while ($row = mysql_fetch_array($result)) {

$arr[] = array(

name = $row[ name ]

sex = $row[ sex ]

age = $row[ age ]

}

這個時候 數(shù)據(jù)就保存在$arr中 你可以使用print_r打印下數(shù)據(jù)測試

接著 建立xml 循環(huán)數(shù)組 將數(shù)據(jù)寫入到xml對應(yīng)的節(jié)點中

$doc = new DOMDocument( utf ) ? // 聲明版本和編碼

$doc formatOutput = true;

$r = $doc createElement( root )

$doc appendChild($r)

foreach ($arr as $dat) {

$b = $doc createElement( data )

$name = $doc createElement( name )

$name appendChild($doc createTextNode($dat[ name ]))

$b appendChild($name)

$sex = $doc createElement( sex )

$sex appendChild($doc createTextNode($dat[ sex ]))

$b appendChild($sex)

$age = $doc createElement( age )

$age appendChild($doc createTextNode($dat[ age ]))

$b appendChild($age)

$r appendChild($b)

}

echo $doc saveXML()

我們調(diào)用了PHP內(nèi)置的類DOMDocument來處理與生成xml 最終生成的xml格式請點擊這里看效果

?xml version= encoding= utf ?

root

data

name李王皓/name

sex男/sex

age /age

/data

/root

獲取XML格式數(shù)據(jù)

現(xiàn)在我們假設(shè)要從第三方獲取學(xué)生信息 數(shù)據(jù)格式是XML 我們需要使用PHP解析XML 然后將解析后的數(shù)據(jù)顯示或者寫入本地數(shù)據(jù)庫 而這里關(guān)鍵的一步是解析XML

PHP有很多中方法可以解析XML 其中PHP提供了內(nèi)置的XMLReader類可以循序地瀏覽過xml檔案的節(jié)點 你可以想像成游標(biāo)走過整份文件的節(jié)點 并抓取需要的內(nèi)容 使用XMLReader是高效的 尤其是讀取非常大的xml數(shù)據(jù) 相對其他方法 使用XMLReader消耗內(nèi)存非常少

header( Content type:text/; Charset=utf )

$url = // helloweba /demo/importXML/createXML php ;

$reader = new XMLReader() ? //實例化XMLReader

$reader open($url) //獲取xml

$i= ;

while ($reader read()) {

if ($reader nodeType == XMLReader::TEXT) { //判斷node類型

$m = $i% ;

if($m== )

$name = $reader value;? //讀取node值

if($m== )

$sex = $reader value;

if($m== ){

$age = $reader value;

$arr[] = array(

name = $name

sex = $sex

age = $age

}

$i++;

}

}

//print_r($arr)

lishixinzhi/Article/program/PHP/201311/21636


本文題目:php如何生成xml數(shù)據(jù) php xml轉(zhuǎn)數(shù)組
文章出自:
http://weahome.cn/article/hhjjpj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部