DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> XML學習教程 >> XML詳解 >> 在PHP5中使用DOM控制XML
在PHP5中使用DOM控制XML
編輯:XML詳解     
HP5中增強了XML的支持,使用DOM擴展了XML操作的能耐。這些函數作為 PHP5 核心的一部分,無需被安裝即可使用。

  下面的例子簡單的演示了DOM對XML的操作,詳細解釋請看代碼中的注釋

<?
/************************************************
**                    use XML in PHP5
** reference site:
** http://cn.PHP.Net/manual/zh/ref.dom.PHP
** the follow codes need PHP5 support
*************************************************/


//首先要創建一個DOMDocument對象
$dom = new DomDocument();
//然後載入XML文件
$dom -> load("test.XML");

//輸出XML文件
//header("Content-type: text/XML;charset=gb2312");
//echo $dom -> saveXML();

//保存XML文件,返回值為int(文件大小,以字節為單位)
//$dom -> save("newfile.XML");

echo "<hr/>取得所有的title元素:<hr/>";
$titles = $dom -> getElementsByTagName("title");
foreach ($titles as $node)
{
  echo $node -> textContent . "<br/>";
  //這樣也可以
  //echo $node->firstChild->data . "<br/>";
}

/*
echo "<hr/>從根結點遍歷所有結點:<br/>";
foreach ($dom->documentElement->childNodes as $items) {
  //如果節點是一個元素(nodeType == 1)並且名字是item就繼續循環
  if ($items->nodeType == 1 && $items->nodeName == "item") {
    foreach ($items->childNodes as $titles) {
      //如果節點是一個元素,並且名字是title就打印它.
      if ($titles->nodeType == 1 && $titles->nodeName == "title") {
        print $titles->textContent . "\n";
      }
    }
  }
}
*/

//使用XPath查詢數據
echo "<hr/>使用XPath查詢的title節點結果:<hr/>";
$xpath = new domxpath($dom);
$titles = $xpath->query("/rss/channel/item/title");
foreach ($titles as $node)
{
  echo $node->textContent."<br/>";
}
/*
這樣和使用getElementsByTagName()方法差不多,但是Xpath要強大的多
深入一點可能是這樣:
/rss/channel/item[position() = 1]/title 返回第一個item元素的所有
/rss/channel/item/title[@id = '23'] 返回所有含有id屬性並且值為23的title
/rss/channel/&folder&/title 返回所有articles元素下面的title(譯者注:&folder&代表目錄深度)
*/


//向DOM中寫入新數據
$item = $dom->createElement("item");
$title = $dom->createElement("title");
$titleText = $dom->createTextNode("title text");
$title->appendChild($titleText);
$item->appendChild($title);
$dom->documentElement->getElementsByTagName('channel')->item(0)->appendChild($item);

//從DOM中刪除節點
//$dom->documentElement->RemoveChild($dom->documentElement->getElementsByTagName("channel")->item(0));
//或者使用xpath查詢出節點再刪除
//$dom->documentElement->RemoveChild($xpath->query("/rss/channel")->item(0));
//$dom->save("newfile.XML");

//從DOM中修改節點數據
//修改第一個title的文件
//這個地方比較笨,新創建一個節點,然後替換舊的節點。如果哪位朋友有其他好的方法請一定要告訴我
$firstTitle = $xpath->query("/rss/channel/item/title")->item(0);
$newTitle = $dom->createElement("title");
$newTitle->appendChild(new DOMText("This's the new title text!!!"));
$firstTitle->parentNode->replaceChild($newTitle, $firstTitle);
//修改屬性
//$firstTitle = $xpath->query("/rss/channel/item/title")->item(0);
//$firstTitle->setAttribute("orderby", "4");
$dom->save("newfile.XML");

echo "<hr/><a href=\"newfile.xml\">查看newfile.XML</a>";

//下面的代碼獲得並解析PHP.Net的首頁,將返第一個title元素的內容。
/*
$dom->loadHtmlFile("http://www.PHP.Net/");
$title = $dom->getElementsByTagName("title");
print $title->item(0)->textContent;
*/
?>

下面是test.XML文件代碼:

<?XML version="1.0" encoding="gb2312"?>
<rss version="2.0">
<channel>
<title>Javascript</title>
<link>http://blog.csdn.Net/zhongmao/category/29515.ASPx</link>
<description>Javascript</description>
<language>zh-chs</language>
<generator>.text version 0.958.2004.2001</generator>
<item>
<creator>zhongmao</creator>
<title orderby="1">out put Excel used Javascript</title>
<link>http://blog.csdn.Net/zhongmao/archive/2004/09/15/105385.ASPx</link>
<pubdate>wed, 15 sep 2004 13:32:00 gmt</pubdate>
<guid>http://blog.csdn.Net/zhongmao/archive/2004/09/15/105385.ASPx</guid>
<comment>http://blog.csdn.Net/zhongmao/comments/105385.ASPx</comment>
<comments>http://blog.csdn.Net/zhongmao/archive/2004/09/15/105385.ASPx#feedback</comments>
<comments>2</comments>
<commentrss>http://blog.csdn.Net/zhongmao/comments/commentrss/105385.ASPx</commentrss>
<ping>http://blog.csdn.Net/zhongmao/services/trackbacks/105385.ASPx</ping>
<description>test description</description>
</item>
<item>
<;creator>zhongmao</creator>
<title orderby="2">out put Word used Javascript</title>
<link>http://blog.csdn.Net/zhongmao/archive/2004/08/06/67161.ASPx</link>
<pubdate>fri, 06 aug 2004 16:33:00 gmt</pubdate>
<guid>http://blog.csdn.Net/zhongmao/archive/2004/08/06/67161.ASPx</guid>
<comment>http://blog.csdn.Net/zhongmao/comments/67161.ASPx</comment>
<comments>http://blog.csdn.Net/zhongmao/archive/2004/08/06/67161.ASPx#feedback</comments>
<comments>0</comments>
<commentrss>http://blog.csdn.Net/zhongmao/comments/commentrss/67161.ASPx</commentrss>
<ping>http://blog.csdn.Net/zhongmao/services/trackbacks/67161.ASPx</ping>
<description>test Word description</description>
</item>
<item>
<creator>zhongmao</creator>
<title orderby="3">XMLhttp</title>
<link>http://blog.csdn.Net/zhongmao/archive/2004/08/02/58417.ASPx</link>
<pubdate>mon, 02 aug 2004 10:11:00 gmt</pubdate>
<guid>http://blog.csdn.Net/zhongmao/archive/2004/08/02/58417.ASPx</guid>
<comment>http://blog.csdn.Net/zhongmao/comments/58417.ASPx</comment>
<comments>http://blog.csdn.Net/zhongmao/archive/2004/08/02/58417.ASPx#feedback</comments>
<comments>0</comments>
<commentrss>http://blog.csdn.Net/zhongmao/comments/commentrss/58417.ASPx</commentrss>
<ping>http://blog.csdn.Net/zhongmao/services/trackbacks/58417.ASPx</ping>
<description>XMLhttpaaa asd bb cc dd</description>
</item>
</channel>
</rss>

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved