0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Smarty】 template_dirとcompile_dir

Posted at

template_dirとcompile_dirのパス

<?php
// Smarty
define('SMARTY_DIR', '/usr/local/lib/smarty-3.1.35/libs/');
require_once(SMARTY_DIR . 'Smarty.class.php');
$smarty = new Smarty();
$smarty->template_dir = "../layout/";
$smarty->compile_dir = "../template_c/";

$smarty->display("layout.tpl");
  • ディレクトリ構造
test--
    |-layout
    |   |_layout.tpl
    |
    |-module
    |   |_module.php
    |
    |-template_c
  • この場合module.phpからlayout.tplを表示するため一階層上のlayoutの中の...と記述する
template_dir = "../layout/";
compile_dir = "../template_c/";
  • displayについてはtemplate_dirの続きからファイルを指定
display("layout.tpl");
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?