资 源 简 介
Gets a film from empireonline.com and grabs most of the info.
First, create a new class, then method chain ($film->getDirectors()->getCast()->getPoster()) to get the info into the class. The data will then be accessible by $film->poster etc.
Avaliable Info
* getAll() - does all the below functions
* getDirectors() - assigns and array of directors to $class->directors
* getWriters() - assigns and array of writers to $class->writerss
* getCast() - assigns and array of cast to $class->cast
* getCertificate() - assigns the certificate (15, 18 etc) to $class->certificate
* getRunningTime() - assigns the running time (in minutes) to $class->runningTime
* getPlot() - assigns a small plot to $class->plot
* getPoster() - assigns the url of a poster to $class->imageURL if there is one