我想获得网站的所有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];