facebook twitter hatena line email

「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月5日 (日) 06: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(); へ