Blame | Letzte Änderung | Log anzeigen | RSS feed
clearCompiledTemplate()clears the compiled version of the specified template resourceDescription===========voidclearCompiledTemplatestringtpl\_filestringcompile\_idintexp\_timeThis clears the compiled version of the specified template resource, orall compiled template files if one is not specified. If you pass a[`$compile_id`](#variable.compile.id) only the compiled template forthis specific [`$compile_id`](#variable.compile.id) is cleared. If youpass an exp\_time, then only compiled templates older than `exp_time`seconds are cleared, by default all compiled templates are clearedregardless of their age. This function is for advanced use only, notnormally needed.<?php// clear a specific template resource$smarty->clearCompiledTemplate('index.tpl');// clear entire compile directory$smarty->clearCompiledTemplate();?>See also [`clearCache()`](#api.clear.cache).