再会。
对于获取远程 html,我使用代码:
$file = file_get_contents('http://who.is/whois/abate.com');
libxml_use_internal_errors(true); //Prevents Warnings, remove if desired
$dom = new DOMDocument();
$dom->loadHTML($file);
我得到了html:
<table>
<tbody>
<tr>
<th>Expires On</th>
<td><span data-bind-domain="expiration_date" style="visibility: visible;">November 28, 2015</span></td>
</tr>
<tr>
<th>Registered On</th>
<td><span data-bind-domain="expiration_date" style="visibility: visible;">June 03, 1995</span></td>
</tr>
<tr>
<th>Updated On</th>
<td><span data-bind-domain="expiration_date" style="visibility: visible;">June 01, 2013</span></td>
</tr>
</tbody></table>
我想得到:
1) 日期到期
2) 注册日期
3) 更新日期
有人知道如何制作吗?