标签: codeigniter models
我想创建表示数据库表名的变量。 (例如$tbl_users = 'xyz_users';)我在哪里定义它们以便在所有模型中都可以访问它们?
$tbl_users = 'xyz_users';
答案 0 :(得分:0)
在constant.php
constant.php
define('TBL_NAME','test');//test name corresponds to mysql table name
模型使用:
$this->db->get(TBL_NAME);
此常量可在整个项目中使用。