简单 HTML DOM - 查找宽度为“327”的 table

Simple HTML DOM - Find table with width="327"

使用简单 HTML DOM,如何找到具有 width="327"<table>

例如:

<table width="327" border="0" cellspacing="0" cellpadding="2">

代码

$html = $html->find('table', 0);

简单 HTML DOM 基于具有语法 [attribute=value]

的属性查找
$html = $html->find('table[width=327]', 0);