設定ファイルでdefine()を並べる、ってのはよく見かける風景ですが、あれは少しでもPHPの知識がないとよくわかりません。
ということで簡単にiniやXML形式で設定を書けるようにできるのがZend_Configです。
> 現時点で Zend_Config が提供している設定データアダプタは Zend_Config_Ini と Zend_Config_Xml の二種類
http://framework.zend.com/manual/ja/zend.config.introduction.html
とか書かれていますが、実はしれっとYAML、JSON、そしてPHPの配列に対応しておりヘルプも書かれています。
http://framework.zend.com/manual/ja/zend.config.html
サンプルは何故かそれぞれのサンプルがバラバラな形になっているのですが、とりあえずZend_Config_Iniと形式を揃えて使ってみます。
config.ini
02 | webhost = www.example.com |
03 | database.adapter = pdo_mysql |
04 | database.params.host = db.example.com |
05 | database.params.username = dbuser |
06 | database.params.password = secret |
07 | database.params.dbname = dbname |
09 | database.params.host = dev.example.com |
10 | database.params.username = devuser |
11 | database.params.password = devsecret |
config.json
03 | "webhost" : "www.example.com" , |
05 | "adapter" : "pdo_mysql" , |
07 | "host" : "db.example.com" , |
15 | "_extends" : "production" , |
18 | "host" : "dev.example.com" , |
19 | "username" : "devuser" , |
20 | "password" : "devsecret" |
config.xml
04 | < webhost value = "www.example.com" /> |
06 | < adapter value = "pdo_mysql" /> |
08 | < host value = "db.example.com" /> |
09 | < username value = "dbuser" /> |
10 | < password value = "secret" /> |
11 | < dbname value = "dbname" /> |
15 | < staging extends = "production" > |
18 | < host value = "dev.example.com" /> |
19 | < username value = "devuser" /> |
20 | < password value = "devsecret" /> |
config.yaml
02 | webhost: www.example.com |
config.php
02 | $arr_production = array ( |
03 | 'webhost' => 'www.example.com' , |
05 | 'adapter' => 'pdo_mysql' , |
07 | 'host' => 'db.example.com' , |
08 | 'username' => 'dbuser' , |
09 | 'password' => 'secret' , |
10 | 'dbname' => 'mydatabase' |
15 | 'webhost' => 'www.example.com' , |
17 | 'adapter' => 'pdo_mysql' , |
19 | 'host' => 'dev.example.com' , |
20 | 'username' => 'devuser' , |
21 | 'password' => 'devsecret' , |
22 | 'dbname' => 'mydatabase' |
26 | return _IS_PRODUCTION ? $arr_production : $arr_staging ; |
index.php
04 | require_once ( 'Zend/Config.php' ); |
05 | require_once ( 'Zend/Config/Ini.php' ); |
06 | require_once ( 'Zend/Config/Json.php' ); |
07 | require_once ( 'Zend/Config/Xml.php' ); |
08 | require_once ( 'Zend/Config/Yaml.php' ); |
11 | $config_ini = new Zend_Config_Ini( 'config.ini' , 'staging' ); |
14 | $config_json = new Zend_Config_Json( 'config.json' , 'staging' ); |
17 | $config_xml = new Zend_Config_Xml( 'config.xml' , 'staging' ); |
20 | $config_yaml = new Zend_Config_Yaml( 'config.yaml' , 'staging' ); |
23 | define( '_IS_PRODUCTION' , true); |
24 | $config_php = new Zend_Config( require_once ( 'config.php' )); |
簡易さではiniとYAMLが飛び抜けてますね。
実は
$config = new Zend_Config('config.ini', 'staging', Zend_Config::INI)とかできません。
Zend/Config.phpではなく、Zend/Config/Ini.phpなど使用形式に対応したアダプタを直接インクルードしないといけません。
これ、ヘルプの何処にも書かれてないんですが。
上記で取得したZend_Configインスタンスはどれも、
Zend_Db::factory($config->database);
というふうに同じ使い方が可能です。
またCountableおよびIteratorインターフェイスを実装しているのでcount()やforeachも使えます。
好きな形式でコンフィグを書くとよいでしょう。
PHPだけ設定の継承をしておらず、プロダクションかステージングかを引数に渡すこともできず残念なことになっています。
PHPの配列による設定はあくまでおまけのようなものです。
つうかPHPで書くんだったらZend_Config使う意味ねえよ。