Source for file Config_File.class.php
Documentation is available at Config_File.class.php
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* You may contact the author of Config_File by e-mail at:
* The latest version of Config_File can be obtained from:
* @link http://smarty.php.net/
* @copyright Copyright: 2001-2003 ispi of Lincoln, Inc.
* @author Andrei Zmievski <andrei@php.net>
/* $Id: Config_File.class.php,v 1.1 2005/10/17 18:37:39 jeichorn Exp $ */
* Config file reading class
* Controls whether variables with the same name overwrite each other.
* Controls whether config values of on/true/yes and off/false/no get
* converted to boolean values automatically.
* Controls whether hidden config sections/vars are read from the file.
* Controls whether or not to fix mac or dos formatted newlines.
* If set to true, \r or \r\n will be changed to \n.
var $_config_data = array ();
* Constructs a new config file class.
* @param string $config_path (optional) path to the config files
* Set the path where configuration files can be found.
* @param string $config_path path to the config files
if (!empty ($config_path)) {
$this->_trigger_error_msg (" Bad config file path '$config_path'" );
if(substr($config_path, -1 ) != DIRECTORY_SEPARATOR ) {
$config_path .= DIRECTORY_SEPARATOR;
$this->_config_path = $config_path;
* Retrieves config info based on the file, section, and variable name.
* @param string $file_name config file to get info for
* @param string $section_name (optional) section to get info for
* @param string $var_name (optional) variable to get info for
* @return string|arraya value or array of values
function &get($file_name, $section_name = NULL , $var_name = NULL )
$this->_trigger_error_msg ('Empty config file name');
$file_name = $this->_config_path . $file_name;
if (!isset ($this->_config_data[$file_name]))
if (empty ($section_name)) {
return $this->_config_data[$file_name]["vars"][$var_name];
if(isset ($this->_config_data[$file_name]["sections"][$section_name]["vars"][$var_name]))
return $this->_config_data[$file_name]["sections"][$section_name]["vars"][$var_name];
if (empty ($section_name)) {
return (array) $this->_config_data[$file_name]["vars"];
if(isset ($this->_config_data[$file_name]["sections"][$section_name]["vars"]))
return (array) $this->_config_data[$file_name]["sections"][$section_name]["vars"];
* Retrieves config info based on the key.
* @param $file_name string config key (filename/section/var)
* @return string|arraysame as get()
* @uses get() retrieves information from config file and returns it
list ($file_name, $section_name, $var_name) = explode('/', $config_key, 3 );
$result = &$this->get($file_name, $section_name, $var_name);
* Get all loaded config file names.
* @return array an array of loaded config file names
* Get all section names from a loaded file.
* @param string $file_name config file to get section names from
* @return array an array of section names from the specified file
$file_name = $this->_config_path . $file_name;
if (!isset ($this->_config_data[$file_name])) {
$this->_trigger_error_msg (" Unknown config file '$file_name'" );
return array_keys($this->_config_data[$file_name]["sections"]);
* Get all global or section variable names.
* @param string $file_name config file to get info for
* @param string $section_name (optional) section to get info for
* @return array an array of variables names from the specified file/section
$this->_trigger_error_msg ('Empty config file name');
} else if (!isset ($this->_config_data[$file_name])) {
$this->_trigger_error_msg (" Unknown config file '$file_name'" );
return array_keys($this->_config_data[$file_name]["vars"]);
return array_keys($this->_config_data[$file_name]["sections"][$section]["vars"]);
* Clear loaded config data for a certain file or all files.
* @param string $file_name file to clear config data for
function clear($file_name = NULL )
$this->_config_data = array ();
else if (isset ($this->_config_data[$file_name]))
$this->_config_data[$file_name] = array ();
* Load a configuration file manually.
* @param string $file_name file name to load
* @param boolean $prepend_path whether current config path should be
* prepended to the filename
function load_file($file_name, $prepend_path = true )
if ($prepend_path && $this->_config_path != "")
$config_file = $this->_config_path . $file_name;
$config_file = $file_name;
$fp = @fopen($config_file, "r");
$this->_trigger_error_msg (" Could not open config file '$config_file'" );
// fix mac/dos formatted newlines
/* replace all multi-line values by placeholders */
$_triple_quotes = $match[1 ];
$contents = preg_replace('/""".*"""/Use', '"\x1b\x1b\x1b".$_i++."\x1b\x1b\x1b"', $contents);
/* Get global variables first. */
if ($contents{0 } != '[' && preg_match("/^(.*?)(\n\[|\Z)/s", $contents, $match))
$config_data["vars"] = $this->_parse_config_block ($match[1 ], $_triple_quotes);
/* Get section variables. */
$config_data["sections"] = array ();
foreach ($match[1 ] as $section) {
$section = substr($section, 1 );
$config_data["sections"][$section]["vars"] = $this->_parse_config_block ($match[1 ], $_triple_quotes);
$this->_config_data[$config_file] = $config_data;
/**#@+ @access private */
* @var string $config_block
function _parse_config_block ($config_block, $triple_quotes)
/* First we grab the multi-line values. */
if (preg_match_all(" /^([^=\n]+)=\s*\x1b\x1b\x1b(\d+)\x1b\x1b\x1b\s*$/ms" , $config_block, $match, PREG_SET_ORDER )) {
for ($i = 0; $i < count($match); $i++ ) {
$this->_set_config_var ($vars, trim($match[$i][1 ]), $triple_quotes[$match[$i][2 ]], false );
$config_block = preg_replace(" /^[^=\n]+=\s*\x1b\x1b\x1b\d+\x1b\x1b\x1b\s*$/ms" , "", $config_block);
$config_lines = preg_split("/\n+/", $config_block);
foreach ($config_lines as $line) {
if (preg_match("/^\s*(\.?\w+)\s*=(.*)/", $line, $match)) {
$this->_set_config_var ($vars, trim($match[1 ]), $var_value, $this->booleanize);
* @param array &$container
* @param string $var_name
* @param mixed $var_value
* @param boolean $booleanize determines whether $var_value is converted to
function _set_config_var (&$container, $var_name, $var_value, $booleanize)
if ($var_name{0 } == '.') {
$var_name = substr($var_name, 1 );
$this->_trigger_error_msg (" Bad variable name '$var_name'" );
else if (preg_match(" /^(off|false|no)$/i" , $var_value))
if (!isset ($container[$var_name]) || $this->overwrite)
$container[$var_name] = $var_value;
settype($container[$var_name], 'array');
$container[$var_name][] = $var_value;
* @uses trigger_error() creates a PHP warning/error
* @param string $error_msg
* @param integer $error_type one of
function _trigger_error_msg ($error_msg, $error_type = E_USER_WARNING )
Documentation generated on Mon, 25 Jun 2007 14:01:40 -0400 by phpDocumentor 1.3.2. PEAR Logo Copyright © PHP Group 2004.
|