/**
* 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'; // 查询语句输出样式 (html, text, none)
$cfg['sqp']['fmtind'] = '1'; // 每行间距(floats ok)
$cfg['sqp']['fmtindunit'] = 'em'; // 每行的缩进单位 (css types - {em,px,pt})
$cfg['sqp']['fmtcolor'] = array( // 语法颜色数据
'comment' => '#808000',
'comment_mysql' => '',
'comment_ansi' => '',
'comment_c' => '',
'digit' => '',
'digit_hex' => 'teal',
'digit_integer' => 'teal',
'digit_float' => 'aqua',
'punct' => 'fuchsia',
'alpha' => '',
'alpha_columntype' => '#ff9900',
'alpha_columnattrib' => '#0000ff',
'alpha_reservedword' => '#990099',
'alpha_functionname' => '#ff0000',
'alpha_identifier' => 'black',
'alpha_variable' => '#800000',
'quote' => '#008000',
'quote_double' => '',
'quote_single' => '',
'quote_backtick' => ''
);
/**
* 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 [url]http://dd.cron.ru/dbg/[/url]
*/
$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