Função PHP SimpleXMLElement :: addAttribute ()
Definição e Uso
XML é uma linguagem de marcação para compartilhar os dados na web, XML é tanto para leitura humana quanto para máquina. A classe SimpleXMLElement representa um documento XML em PHP.
o SimpleXMLElement::addAttribute() A função aceita valores de string que representam o tipo e o valor de um atributo e adiciona o atributo especificado ao elemento SimpleXML.
Sintaxe
SimpleXMLElement::addAttribute($name [$value, $namespace ]);
Parâmetros
Sr. Não | Parâmetro e Descrição |
---|---|
1 | name (Mandatory) Este é um valor de string que representa o nome do atributo a ser adicionado ao SimpleXMLElement (arquivo XML). |
2 | value(Optional) Esta é uma string que representa o valor do atributo a ser adicionado ao SimpleXMLElement (arquivo XML). |
3 | namespace(Optional) Este é um valor de string que representa o namespace ao qual o atributo pertence. |
Valores Retornados
Esta função não retorna nenhum valor.
Versão PHP
Esta função foi introduzida pela primeira vez no PHP Versão 5 e funciona em todas as versões posteriores.
Exemplo
O exemplo a seguir demonstra o uso do SimpleXMLIterator::addAttribute() função.
<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>
Isso produzirá o seguinte resultado -
JavaFX 535 Krishna 11 600
SimpleXMLElement Object (
[@attributes] => Array ( [type] => test )
[Name] => JavaFX [Pages] => 535
[Author] => Krishna [Version] => 11
[Tutorial] => SimpleXMLElement Object ( [Price] => 600 )
)
Exemplo
A seguir está um exemplo desta função com namespace de parâmetro opcional -
<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>
Isso produzirá a seguinte saída -
SimpleXMLElement Object (
[Name] => JavaFX [Pages] => 535
[Author] => Krishna [Version] => 12
)
Exemplo
No exemplo a seguir, estamos tentando carregar o conteúdo de um arquivo XML usando as funções current () e next () e adicionar um atributo a ele -
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>
Isso produzirá o seguinte resultado -
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