caching = 0; $tpl->template_dir = './'; $tpl->compile_dir = 'cache/'; $tpl->compile_check = true; getBenchmark('Etat après initialisation de Smarty'); 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'); ?>