Imdb\Title::title PHP Method

title() public method

Get movie title
See also: IMDB page / (TitlePage)
public title ( ) : string
return string title movie title (name)
    public function title()
    {
        if ($this->main_title == "") {
            $this->title_year();
        }
        return $this->main_title;
    }