Smarty 图标

你可以根据商标公告使用 Smarty 徽标。

Smarty Template Engine Smarty Template Engine

有关赞助、广告、新闻或其他询问,请通过以下方式联系我们:

使用 Smarty 的网站

广告

名称

setCacheDir() — 设置渲染的模板输出存储到的目录

描述

Smarty setCacheDir(string cache_dir);

示例 14.43. setCacheDir()

<?php

// set directory where rendered template's output is stored
$smarty->setCacheDir('./cache');

// chaining of method calls
$smarty->setTemplateDir('./templates')
       ->setCompileDir('./templates_c')
       ->setCacheDir('./cache');

?>

   

另请参见 getCacheDir()$cache_dir