How to define a global variable(value) in codeIgniter

前端 未结 4 959
悲&欢浪女
悲&欢浪女 2021-01-22 02:58

I simply do not mean how to define a global variable/constant in CodeIgniter. Let me explain: I have made a theme engine which is select-able from the current logged in user\'s

4条回答
  •  猫巷女王i
    2021-01-22 03:52

    In Codeigniter all constant is defined inside application/config/constant.php.
    like: define("CONSTANTNAME","value");
    
    Constant degined here is accessible throughout all pages, ie; controllers, models and views
    

提交回复
热议问题