Action::get PHP Method

get() protected method

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