php attr,PHP DOMAttr isId()用法及代码示例
DOMAttr::isId()函數(shù)是PHP中的內置函數(shù),用于檢查屬性是否為已定義的ID。根據(jù)DOM標準,它要求屬性ID為類型ID。使用此功能之前,您需要使用DOMDocument::validateOnParse()方法驗證您的文檔。
用法:
bool DOMAttr::isId( void )
參數(shù):此功能不接受任何參數(shù)。
返回值:如果該函數(shù)包含id屬性,則該函數(shù)返回TRUE,否則返回FALSE。
下面給出的程序說明了PHP中的DOMAttr::isId()函數(shù):
程序1:
// 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:
// 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
總結
以上是生活随笔為你收集整理的php attr,PHP DOMAttr isId()用法及代码示例的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: fentim怎么读?
- 下一篇: 什么是普惠金融 历史由来介绍