получить XMLSchema xml?


У меня есть file.xml содержит:

<?xml version="1.0"?>
<Document xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:iso:std:iso:20022:tech:xsd:test.001.001.01">
  <book>
  <author>Jack Herrington</author>
  <title>PHP Hacks</title>
  <publisher>O'Reilly</publisher>
  </book>
</Document>

Кто-нибудь знает, как я могу получить эту информацию в <document....> примере xmlns?

<Document xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:iso:std:iso:20022:tech:xsd:test.001.001.01">
 2
Author: newbie, 2011-05-30

1 answers

Используйте SimpleXML, чтобы получить пространства имен следующим образом:

$xmlstr = <<<XML
<?xml version="1.0"?>
<Document xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:iso:std:iso:20022:tech:xsd:test.001.001.01">
  <book>
  <author>Jack Herrington</author>
  <title>PHP Hacks</title>
  <publisher>O'Reilly</publisher>
  </book>
</Document>
XML;

$xml = simplexml_load_string($xmlstr);
$namespaces =  $xml->getDocNamespaces(); 
var_export($namespaces);

Этот код создаст:

array ( 'xsd' => 'http://www.w3.org/2001/XMLSchema', 'xsi' => 'http://www.w3.org/2001/XMLSchema-instance', '' => 'urn:iso:std:iso:20022:tech:xsd:test.001.001.01', )

Массив всех пространств имен, объявленных в документе.

 3
Author: Nemoden, 2011-05-30 13:08:15