用特定的类读取html表内容

时间:2015-08-14 14:34:57

标签: php html file-get-contents

我有新闻页面,显示我的新闻。我用表格来显示标题。

<table class="news">
<tr>
    <th>#</th>
    <th></th>
</tr>
<tr>...</tr>
<tr>...</tr>
</table>

我在此页面中有其他表格。但是我希望将这个表放在另一个页面中。我搜索并找到了这样的方式:

$text = file_get_contents("http://www.example.com/news");
echo strip_tags($text, "<table><tr><th><td>");

输出包含新闻页面中的所有表格。我的目标只是上课“新闻”。
我该怎么做?

1 个答案:

答案 0 :(得分:0)

echo strip_tags($text, "<table class='news'>|<tr>|<th>|<td>");

这应删除除

之外的所有标签
echo strip_tags($text, "<table><tr><th><td>");

除了字符串之外,这将删除所有内容:

<table><tr><th><td>