PHP
HTML

DOMAttr::isId

DOMAttr::isId

(PHP 5, PHP 7)

DOMAttr::isId - 检查属性是否是已定义的ID

描述

public bool DOMAttr::isId ( void )

该功能检查属性是否为定义的ID。

根据DOM标准,这需要一个将属性ID定义为类型ID的DTD。在使用此函数之前,您需要使用DOMDocument :: validate或DOMDocument :: validateOnParse验证文档。

返回值

成功时返回TRUE或失败时返回FALSE

例子

实施例#1 :: DOMAttr::isId() 的例子

<?php $doc = new DomDocument; // We need to validate our document before refering to the id $doc->validateOnParse = true; $doc->Load('book.xml' // We retrieve the attribute named id of the chapter element $attr = $doc->getElementsByTagName('chapter')->item(0)->getAttributeNode('id' var_dump($attr->isId() // bool(true) ?>

← DOMAttr::__construct

DOMCdataSection →