PHP: A config file in .ini or .php format?
- by Tim Visee
I'm working on a huge CMS system, and I asked myself what configuration format I should use.
There are two common formats for configuration files. The first one is an INI file, containg all the configuration properties. Then you can simply parse this INI file using build in PHP functions. A second option is to use a PHP file containing a regular…