Skip to Main Content
PHP 5 Kochbuch, Third Edition
book

PHP 5 Kochbuch, Third Edition

by David Sklar, Adam Trachtenberg, Carsten Lucke, Matthias Brusdeylins, Ulrich Speidel, Stephan Schmidt
September 2009
Intermediate to advanced content levelIntermediate to advanced
912 pages
48h 11m
German
O'Reilly Verlag
Content preview from PHP 5 Kochbuch, Third Edition

14.5 Große XML-Dokumente einlesen (SAX)

Problem

Sie möchten ein XML-Dokument lesen und auf der Basis von Ereignissen formatieren. Ein solches Ereignis tritt etwa ein, wenn der Parser auf ein neues öffnendes oder schließendes Tag trifft. Zum Beispiel möchten Sie einen RSS-Feed in HTML umwandeln.

Lösung

Verwenden Sie die Parser-Funktionen in der XML-Erweiterung zu PHP:

$xml = xml_parser_create(); $obj = new Parser_Object; // eine Klasse zur Parser-Unterstützung xml_set_object($xml,$obj); xml_set_element_handler($xml, 'start_element', 'end_element'); xml_set_character_data_handler($xml, 'character_data'); xml_parser_set_option($xml, XML_OPTION_CASE_FOLDING, false); $fp = fopen('data.xml', 'r') or die("Kann XML-Daten nicht lesen."); while ($data = fread($fp, ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

PHP programmieren unter Windows

PHP programmieren unter Windows

Arno Hollosi
CSS Kochbuch, 3rd Edition

CSS Kochbuch, 3rd Edition

Joergen Lang, Christopher Schmitt

Publisher Resources

ISBN: 9783868993271Purchase book