$CONFIG[dbserver] = 'localhost';
$CONFIG[dbuser] = 'test';
$CONFIG[dbpass] = 'rehrsdfvseg'
$CONFIG[dbname] = 'test';
我收到此错误,我该怎么办?
[20-Feb-2014 19:32:20] PHP注意:使用未定义的常量dbserver - 在第2行的/home/knul/public_html/porr/setup/config.php中假定为'dbserver'
[20-Feb-2014 19:32:20] PHP注意:使用未定义的常量dbuser - 在第3行的/home/knul/public_html/porr/setup/config.php中假定为'dbuser'
[20-Feb-2014 19:32:20] PHP注意:使用未定义的常量dbpass - 在第4行的/home/knul/public_html/porr/setup/config.php中假定为'dbpass'
[20-Feb-2014 19:32:20] PHP注意:使用未定义的常量dbname - 在第5行的/home/knul/public_html/porr/setup/config.php中假定为'dbname'
答案 0 :(得分:1)
有两种可能性。
或者您的配置是数组,因此您需要引用像$CONFIG['dbserver']
或者dbserver等是PHP常量,之前使用define function定义。