班级:
class profile_setting extends MY_Controller {
public function __construct()
{
parent::__construct();
}
public function index()
{
echo $this->table()->breadcrump;
}
public function table(){
return array('table'=>'tbl_users','breadcrump'=>'Profile Settings','redirect_url'=>'dashboard');
}
}
上面的代码当我使用如下单行时出现错误
回声 $this->table()->breadcrump; 或 echo $this->table()['breadcrump'];