我正在抓取网站,其中文本包含未编码<
或>
符号。这会破坏它的内容,然后显示为空。
例子
$html = '<div id="test-div">< 50%</div>';
$crawler = new \Symfony\Component\DomCrawler\Crawler($html);
echo $crawler->filter('#test-div')->first()->text(); // Empty string
有没有办法我仍然可以获得#test-div
(我期望的< 50%
)内容?