Función PHP SimpleXMLElement :: atributos ()
Definición y uso
XML es un lenguaje de marcado para compartir los datos a través de la web, XML es legible tanto para humanos como para máquinas. La clase SimpleXMLElement representa un documento XML en PHP.
los SimpleXMLElement::attributes() La función encuentra los atributos junto con los valores en el objeto SimpleXMLElement y los devuelve.
Sintaxis
SimpleXMLElement::attributes([$namespace, $is_prefix]);
Parámetros
No Señor | Descripción de parámetros |
---|---|
1 | namespace(Optional) Este es un valor de cadena que representa el espacio de nombres al que pertenece el atributo. |
2 | Is_prefix(Optional) Este es un valor booleano que representa si el espacio de nombre especificado es un prefijo (VERDADERO) o una URL (FALSO). |
Valores devueltos
Esta función devuelve un objeto de la clase SimpleXMLElement que contiene los atributos y es FALSO si se llama en un atributo.
Versión PHP
Esta función se introdujo por primera vez en PHP Versión 5 y funciona en todas las versiones posteriores.
Ejemplo
El siguiente ejemplo demuestra el uso de la función SimpleXMLIterator :: atributos ().
<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>
Esto producirá el siguiente resultado:
SimpleXMLElement Object ( [@attributes] => Array ( [type] => programming ) )
Ejemplo
Supongamos que tenemos un archivo xml con la siguiente etiqueta:
Data.xml:
<Tutorials>
</Tutorials>
En el siguiente ejemplo, estamos agregando un elemento hijo con un atributo y recuperándolo usando la función atributos () -
<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>
Esto producirá el siguiente resultado:
SimpleXMLElement Object ( [@attributes] => Array ( [type] => Image Processing ) )