cache = false; $tpl->compile_dir = dirname(__FILE__) . '/cache/'; $tpl->template_dir = dirname(__FILE__); $tpl->compile_check = true; getBenchmark('Etat après initialisation de Template_Lite'); for ($i=0; $i < 10000; $i++) { $truc = array('un', 'deux', 'trois', 'quatre', 'cinq', 'six'); $tpl->assign_by_ref('truc', $truc); $out = $tpl->fetch('test.tpl'); unset($truc); unset($out); } getBenchmark('Etat après 10000 assignations de la même variable et 10000 affichages.'); ?>