ConFoo 2025

Dom\Attr::isId

(PHP 8 >= 8.4.0)

Dom\Attr::isId Verifica se o atributo é um ID definido

Descrição

public Dom\Attr::isId(): bool

Esta função verifica se o atributo é um ID definido.

According to the DOM standard this requires a DTD which defines the attribute ID to be of type ID. To utilise this method the document must be validated at parse time by passing LIBXML_DTDVALID as an option.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Retorna true se este atributo é um ID definido, false caso contrário.

Exemplos

Exemplo #1 Dom\Attr::isId() Example

<?php

// We need to validate our document before referring to the id
$doc = Dom\XMLDocument::createFromFile('book.xml', LIBXML_DTDVALID);

// We retrieve the attribute named id of the chapter element
$attr = $doc->getElementsByTagName('chapter')->item(0)->getAttributeNode('id');

var_dump($attr->isId()); // bool(true)

?>
adicione uma nota

Notas Enviadas por Usuários (em inglês)

Não há notas de usuários para esta página.
To Top