⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 config.default.php

📁 WEBGAME源码,有架设说明,只是非常简单
💻 PHP
📖 第 1 页 / 共 3 页
字号:
$cfg['SQLQuery']['Explain']   = TRUE;       // EXPLAIN on SELECT queries$cfg['SQLQuery']['ShowAsPHP'] = TRUE;       // Wrap a query in PHP$cfg['SQLQuery']['Validate']  = FALSE;      // Validate a query (see $cfg['SQLValidator'] as well)$cfg['SQLQuery']['Refresh']   = TRUE;       // Refresh the results page/** * Webserver upload/save/import directories */$cfg['UploadDir']             = '';         // Directory for uploaded files that can be executed by                                            // phpMyAdmin. For example './upload'. Leave empty for                                            // no upload directory support. Use %u for username                                             // inclusion.$cfg['SaveDir']               = '';         // Directory where phpMyAdmin can save exported data on                                            // server. For example './save'. Leave empty for no save                                            // directory support. Use %u for username inclusion.$cfg['docSQLDir']             = '';         // Directory for docSQL imports, phpMyAdmin can import                                            // docSQL files from that directory. For example                                            // './docSQL'. Leave empty for no docSQL import support.$cfg['TempDir']               = '';         // Directory where phpMyAdmin can save temporary files.                                            // This is needed for MS Excel export, see documentation                                            // how to enable that./** * Misc. settings */$cfg['GD2Available']          = 'auto';     // Is GD >= 2 available? Set to yes/no/auto. 'auto'                                            // does autodetection, which is a bit expensive for                                            // php < 4.3.0, but it is the only safe vay how to                                            // determine GD version./** * SQL Parser Settings */$cfg['SQP']['fmtType']      = 'html';       // Pretty-printing style to use on queries (html, text, none)$cfg['SQP']['fmtInd']       = '1';          // Amount to indent each level (floats ok)$cfg['SQP']['fmtIndUnit']   = 'em';         // Units for indenting each level (CSS Types - {em,px,pt})// The graphical settings are now located in themes/themename/layout.inc.php/** * If you wish to use the SQL Validator service, you should be * aware of the following: * All SQL statements are stored anonymously for statistical purposes. * Mimer SQL Validator, Copyright 2002 Upright Database Technology. * All rights reserved. */$cfg['SQLValidator']['use']      = FALSE;   // Make the SQL Validator available$cfg['SQLValidator']['username'] = '';      // If you have a custom username, specify it here (defaults to anonymous)$cfg['SQLValidator']['password'] = '';      // Password for username/** * Developers ONLY! * To use the following, please install the DBG extension from http://dd.cron.ru/dbg/ */$cfg['DBG']['enable'] = FALSE;              // Make the DBG stuff available$cfg['DBG']['profile']['enable'] = FALSE;   // Produce profiling results of PHP$cfg['DBG']['profile']['threshold'] = 0.5;  // Threshold of long running code to display                                            // Anything below the threshold is not displayed/** * MySQL settings */// Column types;// varchar, tinyint, text and date are listed first, based on estimated popularity$cfg['ColumnTypes'] = array(   'VARCHAR',   'TINYINT',   'TEXT',   'DATE',   'SMALLINT',   'MEDIUMINT',   'INT',   'BIGINT',   'FLOAT',   'DOUBLE',   'DECIMAL',   'DATETIME',   'TIMESTAMP',   'TIME',   'YEAR',   'CHAR',   'TINYBLOB',   'TINYTEXT',   'BLOB',   'MEDIUMBLOB',   'MEDIUMTEXT',   'LONGBLOB',   'LONGTEXT',   'ENUM',   'SET',   'BOOL');// Attributes// Note: the "ON UPDATE CURRENT_TIMESTAMP" attribute is added dynamically // for MySQL >= 4.1.2, in tbl_properties.inc.php$cfg['AttributeTypes'] = array(   '',   'BINARY',   'UNSIGNED',   'UNSIGNED ZEROFILL');// Available functionsif ($cfg['ShowFunctionFields']) {    $cfg['Functions'] = array(       'ASCII',       'CHAR',       'SOUNDEX',       'LCASE',       'UCASE',       'NOW',       'PASSWORD',       'OLD_PASSWORD',       'MD5',       'SHA1',       'ENCRYPT',       'COMPRESS',       'UNCOMPRESS',       'RAND',       'LAST_INSERT_ID',       'COUNT',       'AVG',       'SUM',       'CURDATE',       'CURTIME',       'FROM_DAYS',       'FROM_UNIXTIME',       'PERIOD_ADD',       'PERIOD_DIFF',       'TO_DAYS',       'UNIX_TIMESTAMP',       'USER',       'WEEKDAY',       'CONCAT'    );    // Which column types will be mapped to which Group?    $cfg['RestrictColumnTypes'] = array(       'VARCHAR'      => 'FUNC_CHAR',       'TINYINT'      => 'FUNC_NUMBER',       'TEXT'         => 'FUNC_CHAR',       'DATE'         => 'FUNC_DATE',       'SMALLINT'     => 'FUNC_NUMBER',       'MEDIUMINT'    => 'FUNC_NUMBER',       'INT'          => 'FUNC_NUMBER',       'BIGINT'       => 'FUNC_NUMBER',       'FLOAT'        => 'FUNC_NUMBER',       'DOUBLE'       => 'FUNC_NUMBER',       'DECIMAL'      => 'FUNC_NUMBER',       'DATETIME'     => 'FUNC_DATE',       'TIMESTAMP'    => 'FUNC_DATE',       'TIME'         => 'FUNC_DATE',       'YEAR'         => 'FUNC_DATE',       'CHAR'         => 'FUNC_CHAR',       'TINYBLOB'     => 'FUNC_CHAR',       'TINYTEXT'     => 'FUNC_CHAR',       'BLOB'         => 'FUNC_CHAR',       'MEDIUMBLOB'   => 'FUNC_CHAR',       'MEDIUMTEXT'   => 'FUNC_CHAR',       'LONGBLOB'     => 'FUNC_CHAR',       'LONGTEXT'     => 'FUNC_CHAR',       'ENUM'         => '',       'SET'          => ''    );    // Map above defined groups to any function    $cfg['RestrictFunctions'] = array(        'FUNC_CHAR'   => array(            'ASCII',            'CHAR',            'SOUNDEX',            'LCASE',            'UCASE',            'PASSWORD',            'OLD_PASSWORD',            'MD5',            'SHA1',            'ENCRYPT',            'COMPRESS',            'UNCOMPRESS',            'LAST_INSERT_ID',            'USER',            'CONCAT'        ),        'FUNC_DATE'   => array(            'NOW',            'CURDATE',            'CURTIME',            'FROM_DAYS',            'FROM_UNIXTIME',            'PERIOD_ADD',            'PERIOD_DIFF',            'TO_DAYS',            'UNIX_TIMESTAMP',            'WEEKDAY'        ),        'FUNC_NUMBER' => array(            'ASCII',            'CHAR',            'MD5',            'SHA1',            'ENCRYPT',            'RAND',            'LAST_INSERT_ID',            'UNIX_TIMESTAMP',            'COUNT',            'AVG',            'SUM'        )    );    // Default functions for above defined groups    $cfg['DefaultFunctions'] = array(        'FUNC_CHAR'         => '',        'FUNC_DATE'         => '',        'FUNC_NUMBER'       => '',        'first_timestamp'   => 'NOW'    );} // end if// Search operators$cfg['NumOperators'] = array(   '=',   '>',   '>=',   '<',   '<=',   '!=',   'LIKE',   'NOT LIKE');$cfg['TextOperators'] = array(   'LIKE',   'LIKE %...%',   'NOT LIKE',   '=',   '!=',   'REGEXP',   'NOT REGEXP');$cfg['EnumOperators'] = array(   '=',   '!=');$cfg['SetOperators'] = array(   'IN',   'NOT IN');$cfg['NullOperators'] = array(   'IS NULL',   'IS NOT NULL');$cfg['UnaryOperators'] = array(   'IS NULL'     => 1,   'IS NOT NULL' => 1);?>

⌨️ 快捷键说明

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