Why are different methods used to obtain the variables on the controller when model and view are loaded in the CI framework?

Source: Internet
Author: User
On the model, the following code is used to obtain the variables on the controller: {code ...} however, when loading the view, in order to obtain the variables on the controller, I chose to link all the variables on the controller to the loader: {code ...} why have we selected different parties for the same purpose... on the model, the following code is used to obtain the variables on the controller:

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

However, when loading the view, in order to obtain the variables on the controller, we chose to link all the variables on the controller to the loader:

$_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;    }}

Why did I select different methods for the same purpose? I think the method corresponding to the model is already very good.

Reply content:

On the model, the following code is used to obtain the variables on the controller:

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

However, when loading the view, in order to obtain the variables on the controller, we chose to link all the variables on the controller to the loader:

$_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;    }}

Why did I select different methods for the same purpose? I think the method corresponding to the model is already very good.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.