Action::get PHP Méthode

get() protected méthode

取得模板显示变量的值
protected get ( string $name ) : mixed
$name string 模板显示变量
Résultat mixed
    protected function get($name)
    {
        if (isset($this->tVar[$name])) {
            return $this->tVar[$name];
        } else {
            return false;
        }
    }