mirror of
https://github.com/php/php-src.git
synced 2024-12-17 05:50:14 +08:00
87bd7d57c6
domdocument->schemaValidate(string filename) domdocument->schemaValidateSource(string xml) domdocument->relaxNGValidate(string filename) domdocument->relaxNGValidateSource(string xml) also fix domelement->setAttributeNS
21 lines
456 B
XML
21 lines
456 B
XML
<?xml version="1.0"?>
|
|
<shipOrder>
|
|
<shipTo>
|
|
<name>Tove Svendson</name>
|
|
<street>Ragnhildvei 2</street>
|
|
<address>4000 Stavanger</address>
|
|
<country>Norway</country>
|
|
</shipTo>
|
|
<items>
|
|
<item>
|
|
<title>Empire Burlesque</title>
|
|
<quantity>1</quantity>
|
|
<price>10.90</price>
|
|
</item>
|
|
<item>
|
|
<title>Hide your heart</title>
|
|
<quantity>1</quantity>
|
|
<price>9.90</price>
|
|
</item>
|
|
</items>
|
|
</shipOrder> |