コード例 #1
0
ファイル: boot.php プロジェクト: pierotofy/pierotofy.it
        exit;
    }
}
// Misura tempo se necessario
if (SHOWDEBUGBOX) {
    $time = microtime();
    $time = explode(" ", $time);
    $time = $time[1] + $time[0];
    $debug_start_time = $time;
}
// Includi costanti locali
include_once "etc/locale/it/include_all.php";
// Includi le classi PHP e le funzioni
include_once "core/include_all.php";
// Connette il database
$_dbConnector = new _DbConnector();
// Imposta il fuso orario
define('SITE_TIMEZONE', 'Europe/Rome');
putenv("TZ=" . SITE_TIMEZONE);
// Definisce alcune costanti...
define('SITE_TITLE_SUFIX', " - PieroTofy.it");
define('SITE_TITLE_PREFIX', "PieroTofy.it - ");
define('SITE_TITLE', "Programmazione C/C++, Software open source, java, visual basic 6, .net e molto altro ancora");
define('SITE_KEYWORDS', "programmi, sorgenti, guide");
define('SITE_DESCRIPTION', "Il portale per eccellenza sulla programmazione.");
define('SITE_VERSION', "Codename Martial Eagle");
// Asserzioni devono sempre terminare
assert_options(ASSERT_BAIL, true);
// Prende l'utente corrente
$currentUser = UserFactory::CreateCurrentUser();