我正在为codeigniter使用wiredesignz模块化扩展,我想知道是否可以从模块的控制器访问常规codeigniter控制器的公共属性,例如,这是一个常规的ci控制器
<?php
class Dog extends CI_Controller {
public $name;
function __construct()
{
$this->name = "xyz";
}
}
这是一个模块控制器
<?php
class Test extends MX_Controller {
function get_name()
{
//access the $name property of the dog controller here
}
}