AEOS Calvarium v0.4

This commit is contained in:
OverSu 2026-08-26 17:23:29 +02:00
commit 57b531cb62
189 changed files with 3810 additions and 1417 deletions

17
lib/debug.lib.php Executable file
View file

@ -0,0 +1,17 @@
<?php
// Listings des fonctions DEBUG d'AEOS.
// *****************************************************
ini_set('display_errors', 1);
ini_set('log_errors', 1);
// Retourne STRING
// Retourne sous forme d'arbre l'Array
if (!function_exists("view"))
{
function view($a)
{
print_r('<pre>');
print_r($a);
print_r('</pre>');
}
}
?>