La función xml_parser_create() es una función incorporada en PHP que se usa para crear un analizador XML.
Sintaxis:
resource xml_parser_create( string $encoding )
Parámetros: esta función acepta la codificación $de parámetro único, que es opcional. Especifica la codificación de caracteres:
- para entrada/salida en PHP 4
- solo para salida de PHP 5
- para 5.0.0 y 5.0.1, el conjunto de caracteres de salida predeterminado es ISO-8859-1
- desde 5.0.2, el conjunto de caracteres de salida predeterminado es UTF-8
Valor devuelto: esta función devuelve el controlador de recursos que otras funciones XML utilizarán en caso de éxito o Falso en caso de error.
Nota:
- Esta función está disponible para PHP 4.0.0 y versiones posteriores.
- Es posible que estos ejemplos no funcionen en IDE en línea. Por lo tanto, intente ejecutarlo en un servidor local o en servidores alojados en php.
Archivo gfg.xml:
HTML
<?xml version="1.0" encoding="utf-8"?> <user> <username> user123 </username> <name> firstname lastname </name> <phone> +91-9876543210 </phone> <detail> I am John Doe. Live in Kolkata, India. </detail> </user>
Programa 1:
PHP
<?php // Create an XML parser $parser = xml_parser_create(); // set the character handler function // for the XML parser xml_set_character_data_handler($parser, "char_print"); // Opening the xml file $filePointer = fopen("gfg.xml", "r"); // Reading xml data from file while($data = fread($filePointer, 4096)) { // Parsing XML data xml_parse($parser, $data, feof($filePointer)) or // Display error when parse error occurs die(sprintf("XML Error: %s at line %d", // Error string xml_error_string(xml_get_error_code($parser)), // Current line xml_get_current_line_number($parser)) ); } // Free to xml parser xml_parser_free($parser); fclose($filePointer); // Character handler function for XML parser function char_print($parser, $data) { echo $data; } ?>
Producción:
user123 firstname lastname +91-9876543210 I am John Doe. Live in Kolkata, India.
archivo geeks.xml:
XML
<?xml version="1.0" encoding="utf-8"?> <user> <username> user123 </username> <name> firstname lastname </name> <phone> +91-9876543210 </phone> <detail> I am John Doe. Live in Kolkata, India. </detail> </user>
Programa 2:
PHP
<?php // Creating an XML parser $parser = xml_parser_create(); // Element handler function named "starting_handler" // enables custom manipulation for output function starting_handler($parser, $element_name, $element_attrs) { switch($element_name) { case "USER": echo "<u>USER DATA</u><br>"; break; case "USERNAME": echo "Username: "; break; case "NAME": echo "Name: "; break; case "PHONE": echo "Phone no: "; break; case "DETAIL": echo "More about user: "; } } // Element handler function named "ending_handler" function ending_handler($parser, $element_name) { echo "<br>"; } // Character handler function named "char_handler" function char_handler($parser, $data) { echo $data; } // Setting the element handlers xml_set_element_handler($parser, "starting_handler", "ending_handler"); // Setting character data handler xml_set_character_data_handler($parser, "char_handler"); // Opening xml file $fp = fopen("geeks.xml", "r"); // Reading xml file while ($data = fread($fp, 4096)) { xml_parse($parser, $data, feof($fp)) or // Display error while xml parsing die (sprintf("XML Error: %s at line %d", // Error string xml_error_string(xml_get_error_code($parser)), // Error line number xml_get_current_line_number($parser)) ); } // Free to xml parser xml_parser_free($parser); // Closing file stream fclose($fp); ?>
Producción:
USER DATA Username: user123 Name: firstname lastname Phone no: +91-9876543210 More about user: I am John Doe. Live in Kolkata, India.
Referencia: https://www.php.net/manual/en/function.xml-parser-create.php