PHP - Funzione SimpleXMLElement :: getNameSpaces ()
Definizione e utilizzo
XML è un linguaggio di markup per condividere i dati sul Web, XML è sia leggibile dall'uomo che dalla macchina. La classe SimpleXMLElement rappresenta un documento XML in PHP.
Il SimpleXMLElement::getNamespaces() funzione recupera e restituisce gli spazi dei nomi utilizzati in un documento.
Sintassi
SimpleXMLElement::getNamespaces([$recursive]);
Parametri
Suor n | Parametro e descrizione |
---|---|
1 | recursive (Optional) Questo è un valore booleano se passato TRUE questa funzione restituisce gli spazi dei nomi dei nodi padre e figlio. |
Valori restituiti
Questa funzione restituisce un array contenente gli spazi dei nomi.
Versione PHP
Questa funzione è stata introdotta per la prima volta nella versione 5 di PHP e funziona in tutte le versioni successive.
Esempio
L'esempio seguente mostra l'utilizzo della funzione SimpleXMLElement :: getNamespaces ().
<html>
<head>
<body>
<?php
$str="<Tutorial xmlns:t='http://example.org/ns' xmlns:test='http://demo.com/test'>
<t:Name test:ns='a'>JavaFX</t:Name>
<t:Pages test:ns='b'>535</t:Pages>
<t:Author test:ns='c'>Krishna</t:Author>
<t:Version test:ns='d'>11</t:Version>
</Tutorial>";
$xml = new SimpleXMLElement($str);
$result = $xml->getNamespaces(TRUE);
var_dump($result);
?>
</body>
</head>
</html>
Questo produrrà il seguente risultato:
array(2) { ["t"]=> string(21) "http://example.org/ns" ["test"]=> string(20) "http://demo.com/test" }
Esempio
Di seguito è riportato un esempio di questa funzione:
<html>
<head>
<body>
<?php
$str="<Employee xmlns:contact='http://example.org/ns'>
<Name>Ramu</Name>
<Age>25</Age>
<contact:City>Hyderabad</contact:City>
<contact:Phone>9848022338</contact:Phone>
<contact:email>[email protected]</contact:email>
</Employee>";
$xml = new SimpleXMLElement($str);
$result = $xml->getNamespaces(TRUE);
var_dump($result);
?>
</body>
</head>
</html>
Questo produrrà il seguente output:
array(1) { ["contact"]=> string(21) "http://example.org/ns" }