我有两个配置文件。一个是ini一个是php。它们如下所示。我需要更新数据库文件名,但其余文件必须保持不变。知道怎么做吗?
配置文件
; Turning Debugging on
[test]
developer = true
; Production site configuration data
[production]
database.params.dbname = /var/lib/firebird/data/radek_db.gdb
和setting.php
<?php
/**
The settings file
*/
#This will be done automatically if u want to override it uncomment the next line few lines
/*
$Path = 'mainline';
#Database to connect to:
$Database = "radek_db";
?>