cURL解析divs来自其他页面的类数据

时间:2016-10-05 13:57:22

标签: php laravel parsing curl

如何解析其他网站类的数据?那是我的代码:

public function index()
    {            
        $response = Curl::to('http://www.espn.com/nba/game?gameId=400874421')->get();    
        return dd($response);
    } 

在示例中,我需要得分,哪些命令会过滤仅留下分数的代码?

1 个答案:

答案 0 :(得分:0)

有很多html解析器可以做到这一点,不过我会推荐Symfony DomCrawler Component。

http://symfony.com/doc/current/components/dom_crawler.html

$crawler = new Crawler($html);
$crawler = $crawler->filter('.score-class');