Reputation: 154653
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?
Upvotes: 1
Views: 1949
Reputation: 338336
$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.
Upvotes: 3