20 lines
351 B
PHP
20 lines
351 B
PHP
<?php
|
|
|
|
/*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
globals variables
|
|
const vs define : https://stackoverflow.com/questions/2447791/php-define-vs-const
|
|
*/
|
|
|
|
/* switch console_log
|
|
const CONSOLE_OFF = true;
|
|
*/
|
|
const CONSOLE_OFF = false;
|
|
|
|
/* switch console_log
|
|
const CONSOLE_OFF = true;
|
|
*/
|
|
$first_script = null;
|
|
|
|
?>
|