複製代碼 代碼如下:// 用 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 <br> Author: $author <br> Publisher: $publisher<br><hr><br>”;
}
/*
指令碼首先建立一個 new DOMdocument 對象,用 load 方法把圖書 XML 裝入這個對象。之後,指令碼 用 getElementsByName 方法得到指定名稱下的所有元素的列表。
在 book 節點的迴圈中,指令碼用 getElementsByName 方法獲得 author、 publisher 和 title 標記的 nodeValue。nodeValue 是節點中的文本。指令碼然後顯示這些值。
*/ 複製代碼 代碼如下:// 用 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”;
}
/*
指令碼首先設定 g_books 數組,它在記憶體中容納所有圖書和圖書資訊,g_elem 變數儲存指令碼目前正在處理的標記的名稱。然後腳 本定義回呼函數。在這個樣本中,回呼函數是 startElement、endElement 和 textData。在開啟和關閉標記的時候,分別調 用 startElement 和 endElement 函數。在開始和結束標記之間的文本上面,調用 textData。
在這個樣本中,startElement 標記尋找 book 標記,在 book 數組中開始一個新元素。然 後,textData 函數查看當前元素,看它是不是 publisher、title 或 author 標記。如果是,函數就把當前文本放入當前圖 書。
為了讓解析繼續,指令碼用 xml_parser_create 函數建立解析器。然後,設定回調控制代碼。之後,指令碼讀取檔案並把檔案的大塊 內容發送到解析器。在檔案讀取之後,xml_parser_free 函數刪除解析器。指令碼的末尾輸出 g_books 數組的內容。
*/
// 用Regex解析 XML 複製代碼 代碼如下:$xml = ”";
$f = fopen( 'test.xml', 'r' );
while( $data = fread( $f, 4096 ) ) { $xml .= $data; }
fclose( $f );
preg_match_all( ”/\<book\>(.*?)\<\/book\>/s”, $xml, $bookblocks );
foreach( $bookblocks[1] as $block ){
preg_match_all( ”/\<author\>(.*?)\<\/author\>/”, $block, $author );
preg_match_all( ”/\<title\>(.*?)\<\/title\>/”, $block, $title );
preg_match_all( ”/\<publisher\>(.*?)\<\/publisher\>/”, $block, $publisher );
echo( $title[1][0].” - ”.$author[1][0].” - ”. $publisher[1][0].”\n” );
}
/*
我從不建議使用Regex讀取 XML,但是有時它是相容性最好的方式,因為Regex函數總是可用的。不要用Regex讀取直接來自使用者 的 XML,因為無法控制這類 XML 的格式或結構。應當一直用 DOM 庫或 SAX 解析器讀取來自使用者的 XML。
*/
// 用 DOM 編寫 XML 複製代碼 代碼如下:$books = array();
$books [] = array(
'title' => 'PHP Hacks',
'author' => 'Jack Herrington',
'publisher' => ”O'Reilly”
);
$books [] = array(
'title' => 'Podcasting Hacks',
'author' => 'Jack Herrington',
'publisher' => ”O'Reilly”
);
$doc = new DOMDocument();
$doc->formatOutput = true;
$r = $doc->createElement( ”books” );
$doc->appendChild( $r );
foreach( $books as $book ){
$b = $doc->createElement( ”book” );
$author = $doc->createElement( ”author” );
$author->appendChild( $doc->createTextNode( $book['author'] ) );
$b->appendChild( $author );
$title = $doc->createElement( ”title” );
$title->appendChild( $doc->createTextNode( $book['title'] ) );
$b->appendChild( $title );
$publisher = $doc->createElement( ”publisher” );
$publisher->appendChild( $doc->createTextNode( $book['publisher'] ) );
$b->appendChild( $publisher );
$r->appendChild( $b );
}
//echo $doc->saveXML();
/*
在指令碼的頂部,用一些樣本圖書裝入了 books 數組。這個資料可以來自使用者也可以來自資料庫。
樣本圖書裝入之後,指令碼建立一個 new DOMDocument,並把根節點 books 添加到它。然後指令碼為每本書 的 author、title 和 publisher 建立節點,並為每個節點添加文本節點。每個 book 節點的最後一步是重新把它添加到根節 點 books。
使用 DOM 的真正價值在於它建立的 XML 總是格式正確的。但是如果不能用 DOM 建立 XML 時該怎麼辦?
Xml代碼 複製代碼 代碼如下:<?php
PHP 編寫xml
$books = array();
$books [] = array(
'title' => 'PHP Hacks',
'author' => 'Jack Herrington',
'publisher' => ”O'Reilly”
);
$books [] = array(
'title' => 'Podcasting Hacks',
'author' => 'Jack Herrington',
'publisher' => ”O'Reilly”
);
?>
<books>
<?php
foreach( $books as $book )
{
?>
<book>
<title><?php echo( $book['title'] ); ?></title>
<author><?php echo( $book['author'] ); ?>
</author>
<publisher><?php echo( $book['publisher'] ); ?>
</publisher>
</book>
<?php
}
?>
</books>
執行個體中用到的 test.xml 如下: 複製代碼 代碼如下:<?xml version=”1.0″ encoding=”utf8″?>
<books>
<book>
<author>Jack Herrington</author>
<title>PHP Hacks</title>
<publisher>O'Reilly</publisher>
</book>
<book>
<author>Jack Herrington</author>
<title>Podcasting Hacks</title>
<publisher>O'Reilly</publisher>
</book>
</books>