Closed guardiaopt closed 5 years ago
I think this problem is caused because episodes> 17 have 8 digits
To fix this I have changed the following: Open Title.php
Find: public function episodes()
edit line:
. '.+?\shref="/title/tt(?
to
. '.+?\shref="/title/tt(?
This has been fixed already, but not released, sorry. #163
In the New Amsterdam only lists 17 episodes instead of 22 I'm using PHP Version: 7.0.33-0+deb9u1 My code:
$imdbid="7817340"; $config = new \Imdb\Config(); $config->language = 'en-US,en'; $movie = new \Imdb\Title($imdbid, $config); $seasons = $movie->episodes(); print_r($seasons);