在线文档教程
PHP
HTML

tidyNode::hasSiblings

tidyNode::hasSiblings

(PHP 5 >= 5.0.1, PHP 7)

tidyNode :: hasSiblings - 检查节点是否有兄弟节点

描述

bool tidyNode::hasSiblings ( void )

告诉节点是否有兄弟姐妹。

返回值

返回TRUE节点是否有兄弟节点,FALSE否则返回。

例子

Example #1 tidyNode::hasSiblings() example

<?php $html = <<< HTML <html><head> <?php echo '<title>title</title>'; ?> <#    /* JSTE code */   alert('Hello World'  #> </head> <body> <?php   // PHP code   echo 'hello world!'; ?> <%   /* ASP code */   response.write("Hello World!") %> <!-- Comments --> Hello World </body></html> Outside HTML HTML; $tidy = tidy_parse_string($html $num = 0; // the html tag var_dump($tidy->html()->hasSiblings() // the head tag var_dump($tidy->html()->child[0]->hasSiblings() ?>

上面的例子将输出:

bool(false) bool(true)

← tidyNode::hasChildren

tidyNode::isAsp →