从另一个站点捕获特定元素并显示

时间:2016-08-22 00:56:00

标签: php dom curl

如何在页面上获取特定元素并显示另一个元素?

我有这个页面http://www.supercounters.com/stats/1214936,我想得到这个值:

<td 'class="span-5 visitortd">5,582 Visits</td>

并在我的页面中显示..

像这样:

Out: 5,582 Yesterday Visits

实际代码:

$html = file_get_html('http://www.supercounters.com/stats/1214936');

foreach($html->find('table') as $element) 
       echo $element->td . '<br>';

这是我第一次尝试这样做,而且当前的代码效果不好,我认为我们需要补充

1 个答案:

答案 0 :(得分:1)

您想要的数据位于$html->find('td')。标记名称不会成为属性,您必须使用$element->find()来访问不同的元素。

然后要访问内容,您需要使用$element->plaintext