PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /usr/share/doc/cpanel-php84-xml-serializer/examples/ |
| Server: Linux server1.ngambekcore.com 4.18.0-553.51.1.el8_10.x86_64 #1 SMP Wed Apr 30 04:00:07 EDT 2025 x86_64 IP: 159.198.77.92 |
| Dir : //usr/share/doc/cpanel-php84-xml-serializer/examples/unserializeWithAttributes.php |
<?PHP
/**
* This example shows how to parse attributes from
* XML tags.
*
* @author Stephan Schmidt <schst@php.net>
* @uses example.xml
*/
error_reporting(E_ALL);
require_once 'XML/Unserializer.php';
$options = array(
XML_UNSERIALIZER_OPTION_ATTRIBUTES_PARSE => true,
XML_UNSERIALIZER_OPTION_ATTRIBUTES_ARRAYKEY => false
);
// be careful to always use the ampersand in front of the new operator
$unserializer = &new XML_Unserializer($options);
// userialize the document
$status = $unserializer->unserialize('example.xml', true);
if (PEAR::isError($status)) {
echo 'Error: ' . $status->getMessage();
} else {
$data = $unserializer->getUnserializedData();
echo '<pre>';
print_r($data);
echo '</pre>';
}
?>