可能重复:
How to parse and process HTML/XML with PHP?
how to scrape this with Simple HTML DOM
我有一个像这样的表格文本:
$html='<table class="table1"><caption>Report</caption><tbody><tr>
<th>#</th>
<th>Date</th>
<th>tablehead</th>
<th>Price</th>
<th>Quantity</th>
<th>Total Amount</th>
</tr><tr class="even"><td>10</td>
<td>2013-01-19</td>
<td>somevalue</td>
<td>500</td>
<td>17</td>
<td>8500</td>
</tr><tr>
<th colspan="4"> </th>
<th>402</th>
<th>196700</th>
</tr> </tbody></table>';
我想知道如何获得colspan值(存在时)?我试图使用简单的html dom但未能得到它。 任何帮助将不胜感激。