Skip to content

Instantly share code, notes, and snippets.

@RalfAlbert
Created January 29, 2013 03:16
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RalfAlbert/4661502 to your computer and use it in GitHub Desktop.
Save RalfAlbert/4661502 to your computer and use it in GitHub Desktop.
PHP XMLReader class example
<?xml version="1.0" encoding="UTF-8"?>
<products>
<last_updated>2009-11-30 13:52:40</last_updated>
<product tax="19" name="luxus">
<element>foo</element>
</product>
<product tax="7" name="brot">
<element>bar</element>
</product>
</products>
<?php
$xml = new XMLReader();
$xml->open( 'data.xml' );
while( $xml->read() ) {
if( 'product' === $xml->name ) {
printf( '<hr>%3$s ist ein %1$s und hat eine Steuer von %2$d<br>', $xml->name, $xml->getAttribute('tax'), $xml->getAttribute('name') );
$xml->next();
}
}
@magynhard
Copy link

How can you also output the "element" of every "product"?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment