view constants.inc @ 46:15879e2aab65

Function for converting a stringmap to EVALable function.
author Tom Fredrik "BFG" Klaussen <bfg@blenning.no>
date Mon, 08 Oct 2012 15:49:28 +0200
parents 79f708a48a7c
children 66382989353f
line wrap: on
line source

<?php
define(VERBOSITY_NONE, 0);
define(VERBOSITY_ERROR, 1);
define(VERBOSITY_WARNING, 10);
define(VERBOSITY_DEBUG, 100);

define(DEBUG_LEVEL, VERBOSITY_WARNING);

define(DUMP, 0);
define(MAX_RECURSE, 50);
define(CACHING, 1);

if (DEBUG_LEVEL >= VERBOSITY_WARNING) {
  error_reporting(E_ALL);
  ini_set("display_errors", 1);
}
?>