thinkphp数据库配置文件在哪里?怎么修改?
时间:06-15
作者:
在Conf 文件夹里面的config.php里
thinkphp数据库配置文件在哪
tp3.2是 config.php
tp5是 database.php
<?php
return array(
'DB_TYPE' => 'mysql',//
thinkphp数据库配置文件在哪
tp3.2是 config.php
tp5是 database.php
<?php
return array(
'DB_TYPE' => 'mysql',//
在Config文件夹里面
thinkphp数据库配置文件在哪
tp3.2是 config.php
tp5是 database.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,// 开启调试模式
);
?>
thinkphp数据库配置文件在哪
tp3.2是 config.php
tp5是 database.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,// 开启调试模式
);
?>