DomElement->has_attribute

(no version information, might be only in CVS)

DomElement->has_attribute -- Vérifie si un attribut existe

Description

bool DomElement->has_attribute ( string name )

DomElement->has_attribute vérifie l'existence d'un attribut nommé name dans le noeud courant.

Exemple 1. Test l'existence d'un attribut

<?php

include("example.inc");

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

$root = $dom->document_element();

$buffer = '<html';
if (
$root->has_attribute('language')) {
    
$buffer .= 'lang="' . $root->get_attribute('language') . '"';
}
$buffer .= '>';

?>