我想从这个页面的 div 中获取文本:
<html>
<head>Hello world!</head>
<body>
This is a test!<br>Hello man!<br>
<div class="special">
I want this text
</div>
</body>
</html>
我正在使用此代码来获取没有任何标签的内容:
echo strip_tags(file_get_contents(' http://website.com '));
但是,我只想从
<div class="special">
从那个页面。这在PHP中可能吗?