You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can't get attributes like xmlns:
If you parse $this->xml->documentElement with simplexml_import_dom
you can get it through the getDocNamespaces() method
# test in vendor/jackiedo/xml-array/src/Xml2Array.php:130// Convert the XML to an array, starting with the root node$rootNode = $this->xml->documentElement;
$sxe = simplexml_import_dom($rootNode);
var_dump($sxe->getDocNamespaces());
The text was updated successfully, but these errors were encountered:
xml:
I can't get attributes like xmlns:
If you parse $this->xml->documentElement with
simplexml_import_dom
you can get it through the getDocNamespaces() method
The text was updated successfully, but these errors were encountered: