Função PHP SimpleXMLElement :: getName ()
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::getName() A função recupera e retorna o nome do elemento XML atual.
Sintaxe
SimpleXMLElement::getName();
Parâmetros
Esta função não aceita nenhum parâmetro.
Valores Retornados
Esta função retorna um valor de string que representa o nome do elemento XML atual.
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 SimpleXMLElement :: getName ().
<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);
print("Name of the current element: ".$xml->getName());
?>
</body>
</head>
</html>
Isso produzirá o seguinte resultado -
Name of the current element: Tutorial
Exemplo
O exemplo a seguir lê o conteúdo de um arquivo XML e imprime os nomes dos elementos nele -
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>
<Tutorial>
<Name>OpenCV</Name>
<Pages>150</Pages>
<Author>Maruti</Author>
<Version>3.0</Version>
</Tutorial>
</Tutorials>
Sample.php:
<html>
<head>
<body>
<?php
$doc = new DOMDocument;
$xml = simplexml_load_file("data.xml");
//file to SimpleXMLElement
$xml = simplexml_import_dom($xml);
print($xml->getName()."<br>");
foreach ($xml->children() as $child){
print("::". $child->getName() ."<br>");
foreach ($child->children() as $child){
print(":::::". $child->getName() ."<br>");
}
}
?>
</body>
</head>
</html>
Isso produzirá a seguinte saída -
Tutorials
::Tutorial
:::::Name
:::::Pages
:::::Author
:::::Version
::Tutorial
:::::Name
:::::Pages
:::::Author
:::::Version
::Tutorial
:::::Name
:::::Pages
:::::Author
:::::Version
Exemplo
A seguir está outro exemplo desta função -
<html>
<head>
<body>
<?php
$data = "<Tutorials> </Tutorials>";
$xml = simplexml_load_string($data);
print_r($xml);
//Adding the child node
$child = $xml->addChild('Tutorial');
$child->addChild('Name', 'OpenCV');
$child->addChild('Pages', '230');
$child->addChild('Author', 'Maruthi');
$child->addChild('Version', '5.5');
print($xml->getName()."<br>");
foreach ($xml->children() as $child){
print("::". $child->getName() ."<br>");
foreach ($child->children() as $child){
print(":::::". $child->getName() ."<br>");
}
}
?>
</body>
</head>
</html>
Isso produzirá o seguinte resultado -
SimpleXMLElement Object ( ) Tutorials
::Tutorial
:::::Name
:::::Pages
:::::Author
:::::Version