PHP Classes

File: example_object.php

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

Contents

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

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->db->mysql->host . '<br>';

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