用PHP实现读取和编写XML DOM代码
前端之家收集整理的这篇文章主要介绍了
用PHP实现读取和编写XML DOM代码,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<div class="codetitle"><a style="CURSOR: pointer" data="51839" class="copybut" id="copybut51839" onclick="doCopy('code51839')"> 代码如下:
<div class="codebody" id="code51839">
// 用 DOM 读取 XML
$doc = new DOMDocument();
$doc->load(‘test.xml');
$books = $doc->getElementsByTagName(“book”);
foreach( $books as $book ){
$authors = $book->getElementsByTagName(“author”);
$author = $authors->item(0)->nodeValue; // nodeValue属 性可根据节点的类型来设置或返回某个节点的值。
$publishers = $book->getElementsByTagName(“publisher”);
$publisher = $publishers->item(0)->nodeValue;
$titles = $book->getElementsByTagName( ”title” );
$title = $titles->item(0)->nodeValue;
echo ”Title: $title
Author: $author
Publisher: $publisher
”;
}
/
脚本首先创建一个 new DOMdocument 对象,用 load 方法把图书 XML 装入这个对象。之后,脚本 用 getElementsByName 方法得到指定名称下的所有元素的列表。
在 book 节点的循环中,脚本用 getElementsByName 方法获得 author、 publisher 和 title 标记的 nodeValue。nodeValue 是节点中的文本。脚本然后显示这些值。
/
<div class="codetitle">
<a style="CURSOR: pointer" data="43553" class="copybut" id="copybut43553" onclick="doCopy('code43553')"> 代码如下: <div class="codebody" id="code43553">
// 用 SAX 解析器读取 XML
$g_books = array();
$g_elem = null;
function startElement( $parser,$name,$attrs ){
global $g_books,$g_elem;
if ( $name == 'BOOK' ) $g_books []= array();
$g_elem = $name;
}
function endElement( $parser,$name ){
global $g_elem;
$g_elem = null;
}
function textData( $parser,$text ){
global $g_books,$g_elem;
if ( $g_elem == 'AUTHOR' || $g_elem == 'PUBLISHER' || $g_elem == 'TITLE' ){
$g_books[ count( $g_books ) - 1 ][ $g_elem ] = $text;
}
}
$parser = xml_parser_create();
xml_set_element_handler( $parser,”startElement”,”endElement” );
xml_set_character_data_handler( $parser,”textData” );
$f = fopen( 'test.xml','r' );
while( $data = fread( $f,4096 ) ){
xml_parse( $parser,$data );
}
xml_parser_free( $parser );
foreach( $g_books as $book ){
echo $book['TITLE'].” - ”.$book['AUTHOR'].” - ”;
echo $book['PUBLISHER'].”\n”;
}