标签: php simple-html-dom
使用简单HTML DOM,如何找到<table>的<{1}}?
<table>
例如:
width="327"
代码
<table width="327" border="0" cellspacing="0" cellpadding="2">
答案 0 :(得分:1)
简单HTML DOM基于具有语法[attribute=value]
[attribute=value]
$html = $html->find('table[width=327]', 0);