Glossary

XML

XML (eXtensible Markup Language) is a text format for structured data with custom tags. Older, stricter, and more verbose than JSON. Still widely used in enterprise systems, configuration files, RSS, and SOAP APIs.

Structure



  
    Alice
    alice@example.com
  

Advantages of XML over JSON

PHP and XML

$xml = simplexml_load_string($xmlString);
echo $xml->user[0]->name; // Alice

// Or via DOM
$dom = new DOMDocument();
$dom->loadXML($xmlString);
$nodes = $dom->getElementsByTagName('name');