aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/smarty/smarty/docs/programmers/api-functions/api-set-compile-dir.md
blob: bfeb55a53a3a29d79d3cff4ca3d840820bca82cc (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
setCompileDir()

set the directory where compiled templates are stored

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

Smarty

setCompileDir

string

compile\_dir


    <?php

    // set directory where compiled templates are stored
    $smarty->setCompileDir('./templates_c');

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

    ?>

       

See also [`getCompileDir()`](#api.get.compile.dir) and
[`$compile_dir`](#variable.compile.dir).