Mafab.hu is the hungarian IMDb according to this article. This PHP library helps to search for movies on it.
Via Composer
$ composer require polakosz/mafab
use PoLaKoSz\Mafab\Mafab;
...
$mafab = new Mafab();
$search = $mafab->search(); // @return PoLaKoSz\Mafab\EndPoints\SearchEndpointInterface
$results = $search->quicklyFor('Avatar');
print_r($results);
$ composer run-all-tests
: runs both unit and regression tests$ composer run-u-tests
: runs only the unit tests$ composer run-r-tests
: runs only the regression tests (to detect HTML DOM changes in the endpoints - calls Mafab.hu and after try the response)