1
的HTML標籤鑑於使用DOMDocument
下面的PHP代碼:DOM文檔和XPath的 - 每個節點
$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?
}
}
我怎麼能知道每一個匹配節點的標籤名稱?
謝謝,我試過var_dump(),只有一堆DOMDocument對象出現了我也嘗試過nodeValue,但它不是很完美。我在小時候找這個,謝謝! – 2009-08-17 16:34:05