Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Extensible Markup Language (XML)

XML, Extensible Markup Language, is a markup language similar to HTML, but without predefined tags to use.

PHP offers several sets of functions to handle XML: domxml, simplexml, xmlreader, xmlwriter.

<?php
$string = <<<XML
<?xml version='1.0'?>
<document>
    <cmd>login</cmd>
    <login>Richard</login>
</document>
XML;

$xml = simplexml_load_string($string);
print_r($xml);

?>

Documentation

See Also