smarty template engine
Thursday, November 20, 2008  
download | documentation | faq | forum | mailing lists | changelog | contribs 


search for in the  


clear_all_cache()

clear_all_cache() -- clears the entire template cache

Description

void clear_all_cache ( [int expire_time])

As an optional parameter, you can supply a minimum age in seconds the cache files must be before they will get cleared.

Example 13-1. clear_all_cache

<?php
// clear the entire cache
$smarty->clear_all_cache();

// clears all files over one hour old
$smarty->clear_all_cache(3600);
?>

See also clear_cache(), is_cached() and the caching page.




 

credits 

Smarty Copyright © 2002-2008
New Digital Group, Inc.

All rights reserved.