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

runtime_all() защищенный Метод

Get general runtime
protected runtime_all ( ) : string
Результат string runtime complete runtime string, e.g. "150 min / USA:153 min (director's cut)"
    protected function runtime_all()
    {
        if ($this->main_runtime == "") {
            $this->getPage("Title");
            if (@preg_match('!Runtime:</h4>\\s*(.+?)\\s*</div!ms', $this->page["Title"], $match)) {
                $this->main_runtime = $match[1];
            }
        }
        return $this->main_runtime;
    }