Imdb\Title::colors PHP Метод

colors() публичный Метод

e.g. Color, Black and White
См. также: IMDB page / (TitlePage)
public colors ( ) : array
Результат array colors (array[0..1] of strings)
    public function colors()
    {
        if (empty($this->moviecolors)) {
            $this->getPage("Title");
            if (preg_match_all("|/search/title\\?colors=.+?\\s.+?>\\s*(.*?)<|", $this->page["Title"], $matches)) {
                $this->moviecolors = $matches[1];
            }
        }
        return $this->moviecolors;
    }