Think::__get PHP Method

__get() public method

自动变量获取
public __get ( $name ) : mixed
$name 属性名称
return mixed
    public function __get($name)
    {
        return isset($this->{$name}) ? $this->{$name} : null;
    }