compile_check = false; $smarty->setTemplateDir(__DIR__.'/../templates'); $smarty->setCompileDir(__DIR__."/../compile/"); if($double) { $smarty->assign($data); $smarty->fetch($tpl); } $start = microtime(true); $smarty->assign($data); $smarty->fetch($tpl); printf(self::$t, __FUNCTION__, $message, round(microtime(true)-$start, 4), round(memory_get_peak_usage()/1024/1024, 2)); } public static function twig($tpl, $data, $double, $message) { Twig_Autoloader::register(); $loader = new Twig_Loader_Filesystem(__DIR__.'/../templates'); $twig = new Twig_Environment($loader, array( 'cache' => __DIR__."/../compile/", 'autoescape' => false, 'auto_reload' => false, )); if($double) { $twig->loadTemplate($tpl)->render($data); } $start = microtime(true); $twig->loadTemplate($tpl)->render($data); printf(self::$t, __FUNCTION__, $message, round(microtime(true)-$start, 4), round(memory_get_peak_usage()/1024/1024, 2)); } public static function fenom($tpl, $data, $double, $message) { $fenom = Fenom::factory(__DIR__.'/../templates', __DIR__."/../compile"); if($double) { $fenom->fetch($tpl, $data); } $_SERVER["t"] = $start = microtime(true); $fenom->fetch($tpl, $data); printf(self::$t, __FUNCTION__, $message, round(microtime(true)-$start, 4), round(memory_get_peak_usage()/1024/1024, 2)); } public static function volt($tpl, $data, $double, $message) { $view = new \Phalcon\Mvc\View(); //$view->setViewsDir(__DIR__.'/../templates'); $volt = new \Phalcon\Mvc\View\Engine\Volt($view); $volt->setOptions(array( "compiledPath" => __DIR__.'/../compile', "compiledExtension" => __DIR__."/../.compile" )); if($double) { $volt->render($tpl, $data); } $start = microtime(true); var_dump($tpl); $volt->render(__DIR__.'/../templates/'.$tpl, $data); printf(self::$t, __FUNCTION__, $message, round(microtime(true)-$start, 4), round(memory_get_peak_usage()/1024/1024, 2)); } public static function run($engine, $template, $data, $double, $message) { passthru(sprintf(PHP_BINARY." -dmemory_limit=512M -dxdebug.max_nesting_level=1024 %s/run.php --engine '%s' --template '%s' --data '%s' --message '%s' %s", __DIR__, $engine, $template, $data, $message, $double ? '--double' : '')); } /** * @param $engine * @param $template * @param $data */ public static function runs($engine, $template, $data) { self::run($engine, $template, $data, false, '!compiled and !loaded'); self::run($engine, $template, $data, false, ' compiled and !loaded'); self::run($engine, $template, $data, true, ' compiled and loaded'); echo "\n"; } } function t() { if(isset($_SERVER["t"])) var_dump(round(microtime(1) - $_SERVER["t"], 4)); }