Funzione PHP SimpleXMLElement :: addAttribute ()
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::addAttribute() la funzione accetta valori stringa che rappresentano il tipo e il valore di un attributo e aggiunge l'attributo specificato all'elemento SimpleXML.
Sintassi
SimpleXMLElement::addAttribute($name [$value, $namespace ]);
Parametri
Suor n | Parametro e descrizione |
---|---|
1 | name (Mandatory) Questo è un valore stringa che rappresenta il nome dell'attributo da aggiungere a SimpleXMLElement (file XML). |
2 | value(Optional) Questa è una stringa che rappresenta il valore dell'attributo da aggiungere a SimpleXMLElement (file XML). |
3 | namespace(Optional) Questo è un valore stringa che rappresenta lo spazio dei nomi a cui appartiene l'attributo. |
Valori restituiti
Questa funzione non restituisce alcun valore.
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 di SimpleXMLIterator::addAttribute() funzione.
<html>
<head>
<body>
<?php
$xmlstr="<?xml version='1.0' standalone='yes'?>
<Tutorial>
<Name>JavaFX</Name>
<Pages>535</Pages>
<Author>Krishna</Author>
<Version>11</Version>
</Tutorial>";
$xml = new SimpleXMLElement($xmlstr);
$xml->addAttribute('type', 'test');
$tut = $xml->addChild('Tutorial');
$tut->addChild('Price', '600');
echo $xml->asXML();
echo "<br><br>";
print_r($xml);
?>
</body>
</head>
</html>
Questo produrrà il seguente risultato:
JavaFX 535 Krishna 11 600
SimpleXMLElement Object (
[@attributes] => Array ( [type] => test )
[Name] => JavaFX [Pages] => 535
[Author] => Krishna [Version] => 11
[Tutorial] => SimpleXMLElement Object ( [Price] => 600 )
)
Esempio
Di seguito è riportato un esempio di questa funzione con lo spazio dei nomi dei parametri facoltativi:
<html>
<head>
<body>
<?php
$str = "<?xml version='1.0' standalone='yes'?>
<Tutorial>
<Name>JavaFX</Name>
<Pages>535</Pages>
<Author>Krishna</Author>
<Version>12</Version>
</Tutorial>";
$xml = new SimpleXMLElement($str);
$xml->addAttribute("m:type", "test", 'mynamespace');
print_r($xml);
?>
</body>
</head>
</html>
Questo produrrà il seguente output:
SimpleXMLElement Object (
[Name] => JavaFX [Pages] => 535
[Author] => Krishna [Version] => 12
)
Esempio
Nell'esempio seguente stiamo cercando di caricare il contenuto di un file XML utilizzando le funzioni current () e next () e di aggiungervi un attributo -
Data.xml:
<?xml version="1.0" encoding="utf-8"?>
<Tutorials>
<Tutorial>
<Name>JavaFX</Name>
<Pages>535</Pages>
<Author>Krishna</Author>
<Version>11</Version>
</Tutorial>
<Tutorial>
<Name>CoffeeScript</Name>
<Pages>235</Pages>
<Author>Kasyap</Author>
<Version>2.5.1</Version>
</Tutorial>
</Tutorials>
Sample.xml
<html>
<head>
<body>
<?php
$doc = new DOMDocument;
$xml = simplexml_load_file("Data.xml");
//file to SimpleXMLElement
$simpleXmlElement = simplexml_import_dom($xml);
$simpleXmlElement->addAttribute('type', 'test');
print_r($xml);
print("<br><br>");
foreach($xml->children() as $tut) {
print($tut->Name ."<br>");
print($tut->Pages ."<br>");
print($tut->Author ."<br>");
print($tut->Version ."<br>");
print("<br>");
}
?>
</body>
</head>
</html>
Questo produrrà il seguente risultato:
SimpleXMLElement Object ( [@attributes] =>
Array ( [type] => test ) [Tutorial] =>
Array ( [0] => SimpleXMLElement Object ( [Name] =>
JavaFX [Pages] => 535 [Author] =>
Krishna [Version] => 11 ) [1] =>
SimpleXMLElement Object ( [Name] =>
CoffeeScript [Pages] => 235 [Author] =>
Kasyap [Version] => 2.5.1 ) ) )
JavaFX
535
Krishna
11
CoffeeScript
235
Kasyap
2.5.1