当前位置:Gxlcms > PHP教程 > CI框架中model和加载view时为了获取controller上的变量为什么使用了不同的方法?

CI框架中model和加载view时为了获取controller上的变量为什么使用了不同的方法?

时间:2021-07-01 10:21:17 帮助过:26人阅读

在model上,为了获取controller上的变量使用了如下代码:

public function __get($key)
{
    return get_instance()->$key;
}

但是在加载view的时候为了获得controller上的变量却选择了把挂在controller上的都挂在了加载器上:

$_ci_CI =& get_instance();
foreach (get_object_vars($_ci_CI) as $_ci_key => $_ci_var)
{
    if ( ! isset($this->$_ci_key))
    {
       $this->$_ci_key =& $_ci_CI->$_ci_key;
    }
}

同样的目的为什么选择了不同的方法,我觉得model对应的方法已经非常棒了

回复内容:

在model上,为了获取controller上的变量使用了如下代码:

public function __get($key)
{
    return get_instance()->$key;
}

但是在加载view的时候为了获得controller上的变量却选择了把挂在controller上的都挂在了加载器上:

$_ci_CI =& get_instance();
foreach (get_object_vars($_ci_CI) as $_ci_key => $_ci_var)
{
    if ( ! isset($this->$_ci_key))
    {
       $this->$_ci_key =& $_ci_CI->$_ci_key;
    }
}

同样的目的为什么选择了不同的方法,我觉得model对应的方法已经非常棒了

人气教程排行