Php/Smarty/smarty5

提供: 初心者エンジニアの簡易メモ
2026年4月4日 (土) 21:23時点におけるAdmin (トーク | 投稿記録)による版
ナビゲーションに移動 検索に移動

smarty5のダウンロード

https://github.com/smarty-php/smarty/releases/tag/v5.8.0

smarty4から5へ

$smarty->cache_dirをsmarty->setCacheDir()へ

$this->setCacheDir('/path/to/cache');
$this->setTemplateDir('/path/to/templates');
$this->setCompileDir('/path/to/templates_c');

$smarty->template_dir; を $smarty->getTemplateDir(); へ