SimpleXML Problems Example - Mixed Content

simplexml_problems_mixed.php:
<?php 
//load xml
$books simplexml_load_string('<body>
This is a text with a <strong>bold</strong> and <em>italics</em> part 
and a <strong>second bold </strong> one.
</body>'
);

print 
"--- String representation --- \n";
print 
$books ."\n";

print 
"--- Root Elements ---\n";
var_dump($books);
print 
"--- Iterate ---\n";
foreach(
$books as $entry) {
    print 
$entry ."\n";
}

print 
"\n--- asXML() ---\n";
print 
htmlentities($books->asXML());
?> 

 
SimpleXML Problems Example - Mixed Content © copyright 2004  Bitflux GmbH