我正在使用cURL檢索HTML頁面。 html頁面有這樣的表格。使用PHP從HTML中提取值
<table class="table2" style="width:85%; text-align:center">
<tr>
<th>Refference ID</th>
<th>Transaction No</th>
<th>Type</th>
<th>Operator</th>
<th>Amount</th>
<th>Slot</th>
</tr>
<tr>
<td>130717919020ffqClE0nRaspoB</td>
<td>8801458920369</td>
<td>Purchase</td>
<td>Visa</td>
<td>50</td>
<td>20130717091902413</td>
</tr>
</table>
這是該HTML頁面中唯一的表格。我需要提取參考ID &使用PHP的槽。
但不知道該怎麼辦。
編輯: 這one幫了我很多。
夫婦爲你的關鍵字,XPath的,simplehtmldom的,phpquery – DevZer0
這也可能有助於http://php.net/manual/en/function.stripos .php –
@Jose David Garcia Llanos:我想看看你是如何使用'stripos'來做到這一點的。 – zerkms