Login   Register  
PHP Classes
elePHPant
Icontem

File: lib/config.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Mikael  >  MetaTune  >  lib/config.php  >  Download  
File: lib/config.php
Role: Configuration script
Content type: text/plain
Description: Example config file
Class: MetaTune
Retrieve music information using Spotify API
Author: By
Last change:
Date: 2010-05-13 03:24
Size: 917 bytes
 

Contents

Class file image Download
<?php
// Example config file.

// Should contain this. 
header("Content-Type: text/html; charset=UTF-8");

/**
 * Global settings - Individual config. Just nice to have in a config file.
 */
define("DEBUG"true);

if(
DEBUG) {
    
// set debug settings
    
ini_set("display_errors""1");
    
// Report all PHP errors (see changelog)
    
error_reporting(E_ALL);
    
ini_set('error_reporting'E_ALL);
} else {
    
// deactivate error messages, debug info etc..
    // set debug settings
    
ini_set("display_errors""0");
    
// Report all PHP errors (see changelog)
    
error_reporting(0);
    
ini_set('error_reporting'0);
}

// Added a magic function (autoload) to not have to import all the classes
// if there no use for them.
function __autoload($class) {
    
$filename $class '.class.php';
    require_once 
$filename;
}
// either you have this autoload-function or you must require/include all files.
?>