DomElement->has_attribute()

(no version information, might be only in CVS)

DomElement->has_attribute() --  Verifica si un atributo existe en el nodo actual

Descripción

class DomElement {

bool has_attribute ( string nombre )

}

Esta función verifica si un atributo con el nombre dado existe en el nodo actual.

Lista de parámetros

nombre

El nombre del atributo probado.

Valores retornados

Devuelve TRUE si el atributo solicitado existe, FALSE de lo contrario.

Ejemplos

Ejemplo 1. Probar la existencia de un atributo

<?php

include("ejemplo.inc");

if (!
$dom = domxml_open_mem($cadena_xml)) {
    echo
"Ocurri&oacute; un error al interpretar el documento\n";
    exit;
}

$raiz = $dom->document_element();

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

?>

Migración a PHP 5

Use DOMElement->hasAttribute().

Hosting by: hurra.com
Generated: 2007-01-26 18:00:57