📜  PHP | DOMNode isDefaultNamespace()函数

📅  最后修改于: 2022-05-13 01:56:48.517000             🧑  作者: Mango

PHP | DOMNode isDefaultNamespace()函数

DOMNode::isDefaultNamespace()函数是PHP中的一个内置函数,用于检查指定的 namespaceURI 是否为默认命名空间。

句法:

bool DOMNode::isDefaultNamespace( string $namespaceURI )

参数:此函数接受单个参数$namespaceURI ,其中包含命名空间 URI。

返回值:如果 namespaceURI 是默认命名空间,此函数返回 TRUE,否则返回 FALSE。

下面的例子说明了PHP中的DOMNode::isDefaultNamespace()函数

示例 1:

createElementNS(
    'my_namespace', 'p', 'GeeksforGeeks');
   
// Append the child to DOMDocument
$dom->appendChild($p_element);
   
// Check if the namespace is default or not
if($dom->isDefaultNamespace('my_namespace')) {
    echo 'Yes, my_namespace is the default namespace.';
}
?>

输出:

Yes, my_namespace is the default namespace.

示例 2:

createElementNS(
    'my_namespace', 'p', 'GeeksforGeeks');
   
// Append the child to DOMDocument
$dom->appendChild($p_element);
   
// Check if the namespace is default or not
if(!$dom->isDefaultNamespace('some_other_namespace'))
{
    echo 'No, some_other_namespace is not'
                         . ' default namespace.';
}
?>

输出:

No, some_other_namespace is not the default namespace.

参考: https://www. PHP.net/manual/en/domnode.isdefaultnamespace。 PHP