これは私が欲しい結果です:
<?xml version="1.0" encoding="utf-8"?>
<types>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"/>
</types>
しかし、簡単な解決策を使用します:
$document = new DOMDocument('1.0', 'utf-8');
$schema = $document->createElementNS('http://www.w3.org/2001/XMLSchema', 'xs:schema');
$types = $document->createElement('types');
$types->appendChild($schema);
$document->appendChild($types);
echo $document->saveXML();
私はこれだけを手に入れます:
<?xml version="1.0" encoding="utf-8"?>
<types xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"/>
</types>
私は何が欠けていますか?