derferman / movie-addict

Track the amount of IMDB Top 250 movies you have seen. For Facebook

This URL has Read+Write access

movie-addict / hulu.php
100644 17 lines (12 sloc) 0.345 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
 
class Hulu {
 
    function __construct(){
        $ch = curl_init("http://www.hulu.com/browse/alphabetical/feature_films");
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        $this->movies = curl_exec($ch);
    }
    
    function available($title){
        return preg_match("/<a.+?>$title<\/a>/", $this->movies);
    }
 
}
 
?>