mirror of
https://github.com/fenom-template/fenom.git
synced 2023-08-10 21:13:07 +03:00
51 lines
1.5 KiB
PHP
51 lines
1.5 KiB
PHP
<?php
|
|
$data = json_decode(file_get_contents(__DIR__.'/foreach/data.json'), true);
|
|
|
|
exec("rm -rf ".__DIR__."/../compile/*");
|
|
|
|
require(__DIR__.'/../../vendor/autoload.php');
|
|
$smarty = new Smarty();
|
|
$smarty->compile_check = true;
|
|
|
|
$smarty->setTemplateDir(__DIR__);
|
|
$smarty->setCompileDir(__DIR__."/../compile/");
|
|
|
|
$start = microtime(true);
|
|
$smarty->assign($data);
|
|
$smarty->fetch('foreach/smarty.tpl');
|
|
var_dump("Smarty3: ".(microtime(true)-$start));
|
|
|
|
$start = microtime(true);
|
|
$smarty->assign($data);
|
|
$smarty->fetch('foreach/smarty.tpl');
|
|
var_dump("Smarty3 cached: ".(microtime(true)-$start));
|
|
|
|
Twig_Autoloader::register();
|
|
$loader = new Twig_Loader_Filesystem(__DIR__);
|
|
$twig = new Twig_Environment($loader, array(
|
|
'cache' => __DIR__."/../compile/",
|
|
'autoescape' => false,
|
|
'auto_reload' => false,
|
|
));
|
|
|
|
$start = microtime(true);
|
|
$template = $twig->loadTemplate('foreach/twig.tpl');
|
|
$template->render($data);
|
|
var_dump("Twig: ".(microtime(true)-$start));
|
|
|
|
$start = microtime(true);
|
|
$template = $twig->loadTemplate('foreach/twig.tpl');
|
|
$template->render($data);
|
|
var_dump("Twig cached: ".(microtime(true)-$start));
|
|
|
|
$aspect = Aspect::factory(__DIR__, __DIR__."/../compile/", Aspect::CHECK_MTIME | Aspect::INCLUDE_SOURCES);
|
|
|
|
$start = microtime(true);
|
|
$template = $aspect->fetch('foreach/smarty.tpl', $data);
|
|
var_dump("Aspect: ".(microtime(true)-$start));
|
|
|
|
$start = microtime(true);
|
|
$template = $aspect->fetch('foreach/smarty.tpl', $data);
|
|
var_dump("Aspect cached: ".(microtime(true)-$start));
|
|
|