DomAttribute->value

(no version information, might be only in CVS)

DomAttribute->value --  Retourne la valeur d'un attribut

Description

mixed DomAttribute->value ( void )

DomAttribute->value retourne la valeur de l'attribut.

Exemple 1. Récupération de tous les attributs d'un noeud

<?php

include("example.inc");

if (!
$dom = domxml_open_mem($xmlstr)) {
     echo
"Erreur lors de l'analyse du document\n";
     exit;
}

$root = $dom->document_element();
$attrs = $root->attributes();

echo
'Attributs de ' . $root->node_name() . "\n";
foreach (
$attrs as $attribute) {
     echo
' - ' . $attribute->name . ' : ' . $attribute->value . "\n";
}

?>

L'exemple ci-dessus va afficher :

Attributs de chapter
 - language : en

Voir aussi domattribute_name().