2010-moteur-site-simple/cms2/code/debug.php

31 lines
650 B
PHP

<?php
class Debug {
public static $errors = array();
public static function niy($msg) {
array_push(self::$errors, "Not implemented yet : $msg");
}
public static function info($msg) {
array_push(self::$errors, "Info : $msg");
}
public static function error($msg) {
array_push(self::$errors, "Error : $msg");
self::afficher();
die();
}
public static function afficher() {
echo "<pre>";
echo '<span style="color:red">Erreurs:</span>' . "\n";
foreach (self::$errors as $e) {
echo $e . "\n";
}
echo '<span style="color:red">Fin erreurs.</span>' . "\n";
echo "</pre>";
}
}
function niy($name) {
Debug::niy($name);
}
?>