PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Mark Rolich   Config Loader   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example
Class: Config Loader
Process configuration values parsed from ini files
Author: By
Last change: Update of example.php
Date: 2 months ago
Size: 436 bytes
 

Contents

Class file image Download
<?php
include 'Config.php';
$config = parse_ini_file('config.ini', true);
$config = new Config($config);

try {
   
var_dump($config->options) . '<br>';

    echo
$config->env . '<br>';

   
var_dump($config->db);

    echo
$config->{'db.host'} . '<br>';

   
var_dump($config->{'db.mysql'});

   
var_dump($config->{'log.path'});

    echo
$config->{'some.not.existing.option'};
} catch (
Exception $e) {
    echo
$e->getMessage();
}
?>