欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-04-16 11:10:24
...
在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对应的方法已经非常棒了