Created
December 12, 2011 19:00
-
-
Save basvandorst/1468593 to your computer and use it in GitHub Desktop.
PHP Google showtime grabber
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Google Showtime grabber | |
* | |
* This file will grab the last showtimes of theatres nearby your zipcode. | |
* Please make the URL your own! You can also add parameters to this URL: | |
* &date=0|1|2|3 => today|1 day|2 days|etc.. | |
* | |
* Please download the latest version of simple_html_dom.php on sourceForge: | |
* http://sourceforge.net/projects/simplehtmldom/files/ | |
* | |
* @author Bas van Dorst <[email protected]> | |
* @version 0.1 | |
* @package ShowtimeAPI | |
*/ | |
// highlight this file | |
highlight_file(__FILE__);print '<hr>'; | |
require_once('simple_html_dom.phps'); | |
$html = new simple_html_dom(); | |
$html->load_file('http://www.google.nl/movies?mid=&hl=en&near=1400AB'); | |
print '<pre>'; | |
foreach($html->find('#movie_results .theater') as $div) { | |
print "Theate: ".$div->find('h2 a',0)->innertext."\n"; | |
print "Address: ". $div->find('.info',0)->innertext."\n"; | |
foreach($div->find('.movie') as $movie) { | |
print "\tMovie: ".$movie->find('.name a',0)->innertext.'<br />'; | |
print "\tTime: ".$movie->find('.times',0)->innertext.'<br />'; | |
} | |
print "\n\n"; | |
} | |
$html->clear(); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment