sax_xml.php
 
InBlock.gif<?php
InBlock.gif$xmlstr = <<<XML
InBlock.gif<?xml version='1.0' encoding='utf-8' standalone='yes'?>
InBlock.gif<books>
InBlock.gif <book>
InBlock.gif    <title>PHP完全手册</title>
InBlock.gif    <price>39.8</price>
InBlock.gif    <introduction>
InBlock.gif  一本十分畅销的有关phpweb开发的经典之作,作者根据自己丰富经验而著。
InBlock.gif    </introduction>
InBlock.gif    <bookstore>
InBlock.gif     <weihai>新华书店</weihai>
InBlock.gif     <jinan>科技书店</jinan>
InBlock.gif    </bookstore>
InBlock.gif    <book-img type= "thumbs">php01.jpg</book-img>
InBlock.gif </book>
InBlock.gif</books>
InBlock.gifXML;
InBlock.gif?>
 
 
sax1.php:
 
InBlock.gif<?php
InBlock.gifinclude "sax_xml.php";
InBlock.gif
InBlock.gifecho nl2br( "在威海哪里可以买到?\n");
InBlock.gif$xml= new SimpleXMLElement($xmlstr);
InBlock.gifecho $xml->book[0]->bookstore->weihai;
InBlock.gif
InBlock.gif?>