aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/smarty/smarty/docs/programmers/api-functions/api-set-cache-dir.md
blob: 7f7c4b60d743185fe2162997e09b04e68a59c705 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
setCacheDir()

set the directory where the rendered template\'s output is stored

Description
===========

Smarty

setCacheDir

string

cache\_dir


    <?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');

    ?>

       

See also [`getCacheDir()`](#api.get.cache.dir) and
[`$cache_dir`](#variable.cache.dir).