Init(); $application->Run(); $application->Done(); $end = getmicrotime(); if ( $application->isDebugMode() ) { echo '

Memory used: '.round(memory_get_usage()/1024/1024, 1).' Mb
'; echo 'Time used: '.round(($end - $start), 5).' Sec
'; } //print_pre(get_included_files()); function getmicrotime() { list($usec, $sec) = explode(" ", microtime()); return ((float)$usec + (float)$sec); } ?>