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}}'; }
以上是yii表前綴怎麼配置的詳細內容。更多資訊請關注PHP中文網其他相關文章!