Skip to content

Instantly share code, notes, and snippets.

@makasim
Created January 21, 2013 11:08
Show Gist options
  • Save makasim/4585331 to your computer and use it in GitHub Desktop.
Save makasim/4585331 to your computer and use it in GitHub Desktop.
<?php
$crawler = new \Symfony\Component\DomCrawler\Crawler;
$crawler->addContent(file_get_contents(
'http://www.scorespro.com/soccer/uefa/uefa-cup/2012-2013/first-qualifying-round/'
));
/** @var $node \DOMElement */
foreach ($crawler->filter('table.gteam tr') as $node) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment