localtestsettings.sample

来自「php 开发的内容管理系统」· SAMPLE 代码 · 共 30 行

SAMPLE
30
字号
<?php# This contains basic configuration values that are needed# for RunTests.php.# Full path to the mediawiki source code you want to test$IP = '/var/www/mediawiki-cvs';# Now we add that path to the default include_pathini_set('include_path',ini_get('include_path').':'.$IP);# Some options needed for database testing$testOptions = array(    'mysql3' => array(        'server' => null,        'user' => null,        'password' => null,        'database' => null ),    'mysql4' => array(        'server' => null,        'user' => null,        'password' => null,        'database' => null ),    'postgres' => array(        'server' => null,        'user' => null,        'password' => null,        'database' => null ),    );?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?