1
我正在努力爲所處理的解析HTML的所有節點提取簡單HTML DOM解析器我可以獲取所有div或所有span標籤與此獲取html的所有節點並將新coustom ID應用於每個節點
foreach($html->find("div") as $e)
{
//here I got all div tags which are contained in html object but I want all tags not divs
//then I am addin coustom attribute like this way
$e->setattribute("My_id","abc");
}
任何幫助將不勝感激。
我什麼都不知道那類,但是會發現( 「」)或找到( 「*」)返回什麼? – donutdan4114
我試過查找(「*」),但沒有工作:( –
$ html-> find('text')會讓你看到所有包含文本的塊。是否夠好? – donutdan4114