Função PHP SimpleXMLElement :: attributes ()
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::attributes() A função descobre os atributos junto com os valores no objeto SimpleXMLElement e os retorna.
Sintaxe
SimpleXMLElement::attributes([$namespace, $is_prefix]);
Parâmetros
Sr. Não | Parâmetro e Descrição |
---|---|
1 |
namespace(Optional) Este é um valor de string que representa o namespace ao qual o atributo pertence. |
2 |
Is_prefix(Optional) Este é um valor booleano que representa se o namespace especificado é um prefixo (TRUE) ou um URL (FALSE). |
Valores Retornados
Esta função retorna um objeto da classe SimpleXMLElement contendo os atributos e é FALSE se chamado em um atributo.
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 da função 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>
Isso produzirá o seguinte resultado -
SimpleXMLElement Object ( [@attributes] => Array ( [type] => programming ) )
Exemplo
Suponha que temos um arquivo xml com a seguinte tag -
Data.xml:
<Tutorials>
</Tutorials>
No exemplo a seguir, estamos adicionando um elemento filho com um atributo e o recuperamos usando a função attribute () -
<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>
Isso produzirá o seguinte resultado -
SimpleXMLElement Object ( [@attributes] => Array ( [type] => Image Processing ) )