DOMAttr::isId
编辑
PHP中文网词条详解说明
public bool DOMAttr::isId ( void )
根据DOM标准这需要DTD定义一个类型的属性ID的ID。你需要和你的文档验证:验证:DOMDocument DOMDocument:或:validateonparse才能使用此功能。
PHP中文网词条详解返回值
成功时返回 TRUE, 或者在失败时返回 FALSE。
PHP中文网词条详解范例
Example #1 DOMAttr::isId() Example
<?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) ?>
- 参考资料
词条标签: