我的错误>>>
遇到未捕获的异常
类型:ParseError
消息:语法错误,意外的“ <”,预期文件结尾
文件名:C:\ wamp64 \ www \ application \ config \ database.php
行号:97
$active_group = 'default';
$query_builder = TRUE;
$db['default'] = array(
'dsn' => '',
'hostname' => 'localhost',
'username' => 'root',
'password' => '',
'database' => 'sistema', // your database name
'dbdriver' => 'mysqli',
'dbprefix' => '',
'pconnect' => FALSE,
'db_debug' => (ENVIRONMENT !== 'production'),
'cache_on' => FALSE,
'cachedir' => '',
'char_set' => 'utf8',
'dbcollat' => 'utf8_general_ci',
'swap_pre' => '',
'encrypt' => FALSE,
'compress' => FALSE,
'stricton' => FALSE,
'failover' => array(),
'save_queries' => TRUE
);
?>
答案 0 :(得分:0)
删除该文件末尾的?>。
在这里,您可以找到有关为什么不应该关闭这些文件上的php标签的更多信息。
Why would one omit the close tag?
查看了用户发送的原始文件。基本上,文件中有一个隐藏字符。使用原始编码创建了一个新的database.php,一切正常。