我想获取其他网站的特定div内容。为此,我只需按照this answer中所述执行以下操作:
$url = 'https://somedomain.com/somesite/';
$content = file_get_contents($url);
$first_step = explode( '<div id="thediv">' , $content );
$second_step = explode("</div>" , $first_step[1] );
echo $second_step[0];
但是问题是我要从中获取的内容是通过javascript加载的。当我查看网站的源代码时,它仅显示带有html的一些乱码javascript。因此,以上代码无法获得所需的内容。
在这种情况下如何获取必需的div内容?
更新:请参阅外部网站https://pastebin.com/7i5q9MbG
的源代码