15 lines
195 B
PHP
15 lines
195 B
PHP
|
|
||
|
<?php
|
||
|
|
||
|
date_default_timezone_set("Europe/Paris");
|
||
|
|
||
|
define( 'EOL', "\n");
|
||
|
define( 'TAB', "\t");
|
||
|
|
||
|
//constantes des niveaux de log
|
||
|
define( "INFO", 1);
|
||
|
define( "ALERT", 2);
|
||
|
define( "ERROR", 3);
|
||
|
|
||
|
?>
|