在Conf 文件夹里面的config.php里
<?php return array( 'DB_TYPE' => 'mysql',// 数据库类型 'DB_HOST' => '127.0.0.1',// 数据库服务器地址 'DB_NAME' => 'thinkphp',// 数据库名称 'DB_USER' => 'root',// 数据库用户名 'DB_PWD' => '123',// 数据库密码 'DB_PREFIX' => 'tp_',// 数据表前缀 'DB_CHARSET' => 'utf8',// 网站编码 'DB_PORT' => '3306',// 数据库端口 'APP_DEBUG' => false,// 开启调试模式 ); ?>
原创文章,作者:carmelaweatherly,如若转载,请注明出处:https://blog.ytso.com/248986.html