摘要:yii表前缀的配置方法:首先对component中db的配置进行修改;然后在相应的model中修改tablename属性,修改语句如“public function tableName(){return '{{%user}}';}”。
yii表前缀的配置方法:首先对component中db的配置进行修改;然后在相应的model中修改tablename属性,修改语句如“public function tableName(){return '{{%user}}';}”。
yii2配置表前缀
前缀设置
component中db的配置修改
'db'=>array( 'connectionString' => 'mysql:host=localhost;dbname=xxxx', 'emulatePrepare' => true, 'username' => 'root', 'password' => '', 'charset' => 'utf8', 'tablePrefix' => 'tb_', //加入前缀名称fc_ ),
推荐:《yii教程》
然后在相应的model中修改tablename属性如下:
例如model 的 User中
修改为:
public function tableName() { return '{{%user}}'; }
相关文章推荐
网站谷歌评分90+意味着什么?2022-09-06
怎样将不安全网站变成安全网站访问?2022-09-26
网站排名下降,可能跟算法更新没关系2022-09-20
网站如何设置高质量的网页标题?2022-09-14
做外贸网站选哪些语言?法语、德语最吃香2022-09-13