DOMAttr::isId()函数是PHP中的内置函数,用于检查属性是否为已定义的ID。根据DOM标准,它要求属性ID为类型ID。使用此函数之前,您需要使用DOMDocument::validateOnParse()方法验证您的文档。
用法:
bool DOMAttr::isId( void )
参数:此函数不接受任何参数。
返回值:如果该函数包含id属性,则该函数返回TRUE,否则返回FALSE。
下面给出的程序说明了PHP中的DOMAttr::isId()函数:
程序1:
<?php
// Create a new DOM Document
$dom = new DOMDocument('1.0', 'iso-8859-1');
// Enable validate on parse
$dom->validateOnParse = true;
// Create a div element
$element = $dom->appendChild(new DOMElement('div'));
// Create a class attribute
$attr = $element->setAttributeNode(
new DOMAttr('class', 'geekforgeeks'));
// Get the attribute
$getattr = $dom->getElementsByTagName('div')
->item(0)->getAttributeNode('class');
// Check if it is id or not
if($getattr->isId()) {
echo 'Yes, this is an id';
} else {
echo 'No, this is not an id';
}
?>
输出:
No, this is not an id
程序2:
<?php
// Create a new DOM Document
$dom = new DOMDocument('1.0', 'iso-8859-1');
// Enable validate on parse
$dom->validateOnParse = true;
// Create a div element
$element = $dom->appendChild(new DOMElement('div'));
// Create a id attribute
$attr = $element->setAttributeNode(
new DOMAttr('id', 'mynewid'));
// Set that attribute as id
$element->setIDAttribute('id', true);
// Get the attribute
$getattr = $dom->getElementsByTagName('div')
->item(0)->getAttributeNode('id');
// Check if it is id or not
if($getattr->isId()) {
echo 'Yes, this is an id';
} else {
echo 'No, this is not an id';
}
?>
输出:
Yes, this is a id
参考: https://www.php.net/manual/en/domattr.isid.php
相关用法
- PHP DOMAttr __construct()用法及代码示例
- HTML DOM isId用法及代码示例
- p5.js log()用法及代码示例
- p5.js cos()用法及代码示例
- PHP dir()用法及代码示例
- p5.js value()用法及代码示例
- PHP Ds\Set xor()用法及代码示例
- p5.js second()用法及代码示例
- p5.js tan()用法及代码示例
- PHP each()用法及代码示例
- p5.js sin()用法及代码示例
- d3.js d3.map.has()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | DOMAttr isId() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。