DOMDocument& XPath - 每个节点的HTML标记

时间:2009-08-17 16:16:08

标签: php dom xhtml domdocument

使用DOMDocument给出以下PHP代码:

$inputs = $xpath->query('//input | //select | //textarea', $form);

if ($inputs->length > 0)
{
    for ($j = 0; $j < $inputs->length; $j++)
    {
        $input = $inputs->item($j);

        $input->getAttribute('name'); // Returns the Attribute
        $input->getTag(); // How can I get the input, select or textarea tag?
    }
}

我如何知道每个匹配节点的标签名称?

1 个答案:

答案 0 :(得分:3)

$inputs = $xpath->query('//input | //select | //textarea', $form);

// no need for "if ($inputs->length > 0) - the for loop won't run if it is 0
for ($j = 0; $j < $inputs->length; $j++)
{
  $input = $inputs->item($j);
  echo $input->nodeName;
}

请参阅:http://www.php.net/manual/en/class.domnode.php#domnode.props.nodename

P.S。:除了查看文档外,var_dump()可能非常有用。