如何使用 simplexml_load_string从下面的 XML 中获取“TagOne”(即 foo)和 TagTwo(即 bar)的值?我被标签中名为“ns”的命名空间难住了。
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Body>
<ns:ExampleInterface_Output xmlns:ns="http://example.com/interfaces">
<ns:TagOne>Foo</ns:TagOne>
<ns:TagTwo>Bar</ns:TagTwo>
</ns:ExampleInterface_Output>
</SOAP-ENV:Body>
非常感谢您的帮助!