php – 在Yii框架中配置数据库连接

前端之家收集整理的这篇文章主要介绍了php – 在Yii框架中配置数据库连接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Yii框架的main.PHP文件中,有一些配置选项.这就是它如何设置 mysql
'db'=>array(
            'connectionString' => 'MysqL:host=localhost;dbname=testdrive','emulatePrepare' => true,'username' => 'root','password' => 'root','charset' => 'utf8',),

在我的MAMP系统上,我必须将端口指定为8889.如何将其添加到此?

谢谢

添加了这样的端口,它似乎工作
'db'=>array(
            'connectionString' => 'MysqL:host=localhost;port=8889;dbname=testdrive',
原文链接:https://www.f2er.com/php/135516.html

猜你在找的PHP相关文章