Comparing changes: https://github.com/smarty-php/smarty/compare/v4.3.1...v4.4.1 It is noticeable that Smarty 4.3.1 does not officially support PHP 8.3. Is only supported with 4.4.0. Remark: During tests with Smarty 4.5.1, it was noticed that the following warning occurs: Deprecated: Using the unregistered function "function_exists" in a template is deprecated and will be removed in a future version. Use Smarty::registerPlugin to explicitly register a custom modifier. As of Smarty 5.X.X, templates must be revised again. The Smarty release 5.0.2 is already officially available. However, integration into FlatPress is not entirely trivial.
2.1 KiB
isCached()
returns true if there is a valid cache for this template
Description
bool
isCached
string
template
string
cache_id
string
compile_id
-
This only works if
$cachingis set to one ofSmarty::CACHING_LIFETIME_CURRENTorSmarty::CACHING_LIFETIME_SAVEDto enable caching. See the caching section for more info. -
You can also pass a
$cache_idas an optional second parameter in case you want multiple caches for the given template. -
You can supply a
$compile idas an optional third parameter. If you omit that parameter the persistent$compile_idis used if its set. -
If you do not want to pass a
$cache_idbut want to pass a$compile_idyou have to pass NULL as a$cache_id.
Note
If
isCached()returns TRUE it actually loads the cached output and stores it internally. Any subsequent call todisplay()orfetch()will return this internally stored output and does not try to reload the cache file. This prevents a race condition that may occur when a second process clears the cache between the calls toisCached()and todisplay()in the example above. This also means calls toclearCache()and other changes of the cache-settings may have no effect afterisCached()returned TRUE.
<?php
$smarty->setCaching(Smarty::CACHING_LIFETIME_CURRENT);
if(!$smarty->isCached('index.tpl')) {
// do database calls, assign vars here
}
$smarty->display('index.tpl');
?>
<?php
$smarty->setCaching(Smarty::CACHING_LIFETIME_CURRENT);
if(!$smarty->isCached('index.tpl', 'FrontPage')) {
// do database calls, assign vars here
}
$smarty->display('index.tpl', 'FrontPage');
?>
See also clearCache(),
clearAllCache(), and caching
section.