クラス:
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');
}
}
上記のコードでは、以下のようにこの 1 行を使用するとエラーが発生しました
echo $this->table()->breadcrump; または echo $this->table()['breadcrump'];