How can I get the xsi:nil attribute value using PHP's DOMDocument (and if necessary DOMXPath)?
<?xml version="1.0"?>
<Rows xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Row Index="1">
<Email xsi:nil="true"/>
</Row>
</Rows>
I tried getAttribute / getAttributeNS / getAttributeNodeNS, but without success.
Thanks in advance
$element->getAttribute('xsi:nil')??