|
发表于 2017-5-22 11:17:23
|
显示全部楼层
News_model 继承了CI_Model中的魔术方法__get(),当访问不存在的属性时 会自动调用该方法
/**
* __get magic
*
* Allows models to access CI's loaded classes using the same
* syntax as controllers.
*
* @param string $key
*/
public function __get($key)
{
// Debugging note:
// If you're here because you're getting an error message
// saying 'Undefined Property: system/core/Model.php', it's
// most likely a typo in your model code.
return get_instance()->$key;
}
所以这里的load 其实是相当于 调用了 get_instance()->load |
|