FabianBeiner / PHP-IMDB-Grabber

This PHP library enables you to scrape data from IMDB.com.
MIT License
271 stars 160 forks source link

getReleaseDate() does not contain releasedate only #200

Closed mkreisl closed 1 month ago

mkreisl commented 1 month ago
<?php
include_once 'imdb.class.php';
$tt = 'tt0041239';
$IMDB = new IMDB('http://imdb.com/Title?' . $tt);
if ($IMDB->isReady) {
    print_r($IMDB->getReleaseDate());
} else {
    echo 'Movie not found. 😞';
}

prints 06 May 1949 (Canada), but I would expect 06 May 1949only

FabianBeiner commented 1 month ago

Thanks for your report, @mkreisl. It's fixed.