如何使用 PHP 的 DOMDocument(以及必要时的 DOMXPath)获取 xsi:nil 属性值?
<?xml version="1.0"?>
<Rows xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Row Index="1">
<Email xsi:nil="true"/>
</Row>
</Rows>
我尝试了 getAttribute / getAttributeNS / getAttributeNodeNS,但没有成功。
提前致谢