Voting

: eight plus zero?
(Example: nine)

The Note You're Voting On

lewar
18 years ago
Simple way to get the URI of the default namespace:

<?php
$document
= new DOMDocument();
$document->load($xml_file);
$uri = $document->documentElement->lookupnamespaceURI(NULL);
?>

<< Back to user notes page

To Top