|
| |
1 |
1 |
<?php |
|
| |
2 |
2 |
|
|
| |
3 |
3 |
if( file_exists('debug.php') ) include_once('debug.php'); |
|
| |
4 |
|
if( defined('DEBUG_MODE') ) |
|
| |
5 |
|
{ |
|
| |
6 |
|
error_reporting(E_ALL); |
|
| |
7 |
|
} |
|
| |
8 |
|
else |
|
| |
9 |
|
error_reporting(0); |
|
| |
|
4 |
if( !defined('DEBUG_MODE') ) error_reporting(0); |
|
| |
10 |
5 |
|
|
| |
11 |
6 |
list($usec, $sec) = explode(" ",microtime()); |
|
| |
12 |
7 |
$timestart = (float)$usec + (float)$sec; |