Imdb\Title::otherCompany PHP Method

otherCompany() public method

Info about other companies
See also: IMDB page /companycredits
public otherCompany ( ) : array
return array [0..n] of array (name,url,notes)
    public function otherCompany()
    {
        if (empty($this->compcred_other)) {
            $page = $this->getPage("CompanyCredits");
            if (empty($page)) {
                return array();
            }
            // no such page
            if (preg_match('|<h4[^>]*>Other Companies</h4>\\s*<ul[^>]*>(.*?)</ul>|ims', $this->page["CompanyCredits"], $match)) {
                $this->companyParse($match[1], $this->compcred_other);
            }
        }
        return $this->compcred_other;
    }