HomePHP Page 4 - Easy Application Configuration With patConfiguration
Anatomy Class - PHP
Tired of handcrafting configuration file manipulation tools for your Web application? Save yourself some time with patConfiguration, a PHP class designed to assist developers with reading, writing and maintaining application configuration files.
1. The first step is, obviously, to include all the relevant files for the class to work.
// include class
require("patConfiguration.php");
Once that's done, I can safely create an object of the patConfiguration class.
// create patConfiguration object
$conf = new patConfiguration;
This object instance will serve as the primary access point to the data in the application configuration file(s), allowing me to do all kinds of nifty things with it.
2. Next, the object's setConfigDir() method is used to set the default location of the configuration files,
// set config file locations
$conf->setConfigDir("config");
and the parseConfigFile() method is used to actually read each file into the object's internal stack.
You can parse multiple configuration files by calling parseConfigFile() for each file, and telling patConfiguration to append (instead of overwriting) each set of configuration variables to the existing stack via the additional "a" option - as in the following code snippet:
The getConfigValue() method gets the value of a specified configuration variable from the configuration file(s). If no variable name is specified, the entire set of values is returned...as in the example above.