Make a parser of a page

0

I'm trying to get information from a page through the url. I'm developing in symfony and using simple_html_dom or Crowler. But I'm not even close to doing what I need.

The page I'm accessing is this: Events SESC São Carlos

What I want to do is take all the titles of the events. While I am with this code below where I get the page and give a find by the div with class block_agenda-container which is the class that separates the events. But nothing returns.

$html = new \simple_html_dom();
$html->load_file('http://www.sescsp.org.br/programacao/#/tagcloud=nuvem/ct=o-que-fazer');
$ret = $html->find('div[class=block_agenda-container]');
dump($ret);
die();
    
asked by anonymous 22.01.2016 / 02:07

0 answers