「Php/Smarty/smarty5」の版間の差分

提供: 初心者エンジニアの簡易メモ
ナビゲーションに移動 検索に移動
ページの作成:「==smarty5のダウンロード== https://github.com/smarty-php/smarty/releases/tag/v5.8.0 ==smarty4から5へ== $cache_dirをsetCacheDir()へ <pre> $this->setCacheDir('...」
 
編集の要約なし
3行目: 3行目:


==smarty4から5へ==
==smarty4から5へ==
$cache_dirをsetCacheDir()へ
$smarty->cache_dirをsmarty->setCacheDir()へ


<pre>
<pre>
10行目: 10行目:
$this->setCompileDir('/path/to/templates_c');
$this->setCompileDir('/path/to/templates_c');
</pre>
</pre>
$smarty->template_dir; を $smarty->getTemplateDir(); へ

2026年4月4日 (土) 21:23時点における版

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(); へ