我知道这个问题已经被问过很多次了,但我研究了很多例子,但我仍然无法从这个 html 表中获取我需要的数据。
我有一个生成这样的 html 表的 php 文件:
<table width="97%">
<tr><td align="center">
<!-- table for columns -->
<table border="0" cellpadding="15">
<tr>
<td valign="top">
<table border="0" width="800">
<caption style="font-size: 32px; font-weight: bold;">
</caption>
<!-- force column widths exactly (for some reason it didn't want to
play along with normal width settings) -->
<tr>
<td><img src="/spacer.gif" width="160" height="1" border="0" alt="" /></td>
<td><img src="/spacer.gif" width="170" height="1" border="0" alt="" /></td>
</tr>
<tr>
<td style="">
DATA1
</td>
<td width="200" style="font-size: 80px; font-weight:bold;">
0 </td>
</tr>
<tr>
<td style="">
DATA2
</td>
<td width="200" style="font-size: 80px; font-weight:bold;">
0 </td>
</tr>
<tr>
<td style="">
DATA3
</td>
<td width="200" style="font-size: 80px; font-weight:bold;">
0 </td>
</tr>
<tr>
<td style="">
DATA4
</td>
<td width="200" style="font-size: 80px; font-weight:bold;">
5 </td>
</tr>
<tr>
<td style="">
DATA5
</td>
<td width="200" style="font-size: 80px; font-weight:bold;">
0 </td>
</tr>
<tr>
<td style="">
DATA6
</td>
<td width="200" style="font-size: 80px; font-weight:bold;">
0 </td>
</tr>
<!-- end of stats_with_style loop -->
</table>
</td>
<!-- end of groups loop -->
</tr>
</table>
<br /><br />
</td></tr>
</table>
我想使用 php.ini 获取每个 DATA 集的 html(数字)(在每个样式之后)。
谁能阐明我如何做到这一点?