Imdb\Title::crazy_credits PHP Method

crazy_credits() public method

Get the Crazy Credits
See also: IMDB page /crazycredits
public crazy_credits ( ) : array
return array crazy_credits (array[0..n] of string)
    public function crazy_credits()
    {
        if (empty($this->crazy_credits)) {
            $this->getPage("CrazyCredits");
            if (preg_match_all('!<div id="cz.+?>(.+?)</span\\s*>\\s*<span class="linksoda">!ims', $this->page["CrazyCredits"], $matches)) {
                $this->crazy_credits = $matches[1];
            }
        }
        return $this->crazy_credits;
    }