Imdb\Title::endyear PHP Method

endyear() public method

Get end-year Usually this returns the same value as year() -- except for those cases where production spanned multiple years, usually for series
See also: IMDB page / (TitlePage)
public endyear ( ) : string
return string year
    public function endyear()
    {
        if ($this->main_endyear == -1) {
            $this->title_year();
        }
        return $this->main_endyear;
    }