PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

is_cached | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

is_cached

void is_cached(string template, [string cache_id])

This returns true if there is a valid cache for this template. This only works if caching is set to true.

Example 13-18. is_cached

$smarty->caching = true;

if(!$smarty->is_cached("index.tpl")) {
    // do database calls, assign vars here
}

$smarty->display("index.tpl");

You can also pass a cache id as an an optional second parameter in case you want multiple caches for the given template.

Example 13-19. is_cached with multiple-cache template

$smarty->caching = true;

if(!$smarty->is_cached("index.tpl","FrontPage")) {
    // do database calls, assign vars here
}

$smarty->display("index.tpl","FrontPage");
忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「is_cached」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | is_cached」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: