Funzione PHP SimpleXMLElement :: attributes ()
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::attributes() la funzione rileva gli attributi insieme ai valori nell'oggetto SimpleXMLElement e li restituisce.
Sintassi
SimpleXMLElement::attributes([$namespace, $is_prefix]);
Parametri
Suor n | Parametro e descrizione |
---|---|
1 | namespace(Optional) Questo è un valore stringa che rappresenta lo spazio dei nomi a cui appartiene l'attributo. |
2 | Is_prefix(Optional) Questo è un valore booleano che rappresenta se lo spazio dei nomi specificato è un prefisso (TRUE) o un URL (FALSE). |
Valori restituiti
Questa funzione restituisce un oggetto della classe SimpleXMLElement contenente gli attributi ed è FALSE se chiamata su un attributo.
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 SimpleXMLIterator :: attributes ().
<html>
<head>
<body>
<?php
$str="<?xml version='1.0' standalone='yes'?>
<Tutorial>
<Name type = 'programming'>JavaFX</Name>
<Pages>535</Pages>
<Author>Krishna</Author>
<Version>11</Version>
</Tutorial>";
$xml = new SimpleXMLElement($str);
$attr = $xml->Name->attributes();
print_r($attr);
?>
</body>
</head>
</html>
Questo produrrà il seguente risultato:
SimpleXMLElement Object ( [@attributes] => Array ( [type] => programming ) )
Esempio
Supponiamo di avere un file xml con il seguente tag:
Data.xml:
<Tutorials>
</Tutorials>
Nell'esempio seguente stiamo aggiungendo un elemento figlio con un attributo e recuperandolo utilizzando la funzione attributes () -
<html>
<head>
<body>
<?php
$doc = new DOMDocument;
$xml = simplexml_load_file("data.xml");
//file to SimpleXMLElement
$simpleXmlElement = simplexml_import_dom($xml);
//Adding the child node
$child = $xml->addChild('Tutorial');
$ele = $child->addChild('Name', 'OpenCV');
$ele->addAttribute('type', 'Image Processing');
$child->addChild('Pages', '230');
$child->addChild('Author', 'Maruthi');
$child->addChild('Version', '5.5');
$xml->asXML("output.xml");
$attr = $xml->Tutorial->Name->attributes();
print_r($attr);
?>
</body>
</head>
</html>
Questo produrrà il seguente risultato:
SimpleXMLElement Object ( [@attributes] => Array ( [type] => Image Processing ) )