php从外部网站获取所有div内容

时间:2016-10-29 04:54:07

标签: php

我想获得网站的所有div内容

我想得到这个div

<div class="user_name"/>

有很多user_name作为页面中div的类名,但我想获得所有div内容

我有这个代码,我在这里得到Get DIV content from external Website

$url = 'http://www.myexternalsite.com/user/1';
$content = file_get_contents($url);
$first_step = explode( '<div class="user_name"/>' , $content );
$second_step = explode("</div>" , $first_step[1] );

echo $second_step[0];

1 个答案:

答案 0 :(得分:0)