11 lines
266 B
PHP
Executable File
11 lines
266 B
PHP
Executable File
<?php
|
|
error_reporting(0);
|
|
$PZ = array(
|
|
'DB_HOST'=>'127.0.0.1',// 服务器地址
|
|
'DB_NAME'=>'cdk',// 游戏数据库
|
|
'DB_USER'=>'root',// 用户名
|
|
'DB_PWD'=>'mysql_tr2Few',// 密码
|
|
'DB_PORT'=>'23306',// 端口
|
|
'DB_CHARSET'=>'utf8',// 数据库字符集
|
|
);
|
|
?>
|