Original XML:
<?xml version = '1.0' encoding = 'UTF-8'?> <rss version="2.0" > <channel> <item> <description>&lt;a href=&quot;http://www.google.com&quot;>Google</a></description> </item> </channel> </rss>

Parsed struct:
Array ( [0] => Array ( [tag] => RSS [type] => open [level] => 1 [attributes] => Array ( [VERSION] => 2.0 ) ) [1] => Array ( [tag] => CHANNEL [type] => open [level] => 2 ) [2] => Array ( [tag] => ITEM [type] => open [level] => 3 ) [3] => Array ( [tag] => DESCRIPTION [type] => open [level] => 4 [value] => Google ) )