如何解析其他网站类的数据?那是我的代码:
public function index()
{
$response = Curl::to('http://www.espn.com/nba/game?gameId=400874421')->get();
return dd($response);
}
在示例中,我需要得分,哪些命令会过滤仅留下分数的代码?
答案 0 :(得分:0)
有很多html解析器可以做到这一点,不过我会推荐Symfony DomCrawler Component。
http://symfony.com/doc/current/components/dom_crawler.html
$crawler = new Crawler($html);
$crawler = $crawler->filter('.score-class');