14 lines
335 B
PHP
14 lines
335 B
PHP
<?php
|
|
//全局配置文件
|
|
/**
|
|
* 数据库配置
|
|
*/
|
|
$dbconfig=array(
|
|
'host' => 'localhost', //数据库服务器
|
|
'port' => 3306, //数据库端口
|
|
'user' => 'openid', //数据库用户名
|
|
'pwd' => 'LywXMiYFXnXerieE', //数据库密码
|
|
'dbname' => 'openid', //数据库名
|
|
'dbqz' => 'oid' //数据表前缀
|
|
);
|