vote up 0 vote down star

Given the following PHP code using DOMDocument:

$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?
    }
}

How can I know the tag name of each matched node?

flag

1 Answer

vote up 1 vote down check
$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;
}

See: http://www.php.net/manual/en/class.domnode.php#domnode.props.nodename

P.S.: Apart from looking into the docs, a var_dump() can be really helpful.

link|flag
Thanks, I tried var_dump() and only a bunch of DOMDocument objects came up I also tried nodeValue but it wasn't quite it. I was looking for this at hours, thanks! – Alix Axel Aug 17 at 16:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.