facebook twitter hatena line email

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

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(smarty4から5へ)
行3: 行3:
  
 
==smarty4から5へ==
 
==smarty4から5へ==
$smarty->cache_dirをsmarty->setCacheDir()へ
+
===setterへ===
 +
$smarty->cache_dir、$smarty->template_dir、$smarty->compile_dir への設定をそれぞれ変更。
  
 
<pre>
 
<pre>
行11: 行12:
 
</pre>
 
</pre>
  
 +
===getterへ===
 
$smarty->template_dir; を $smarty->getTemplateDir(); へ
 
$smarty->template_dir; を $smarty->getTemplateDir(); へ
 +
$smarty->compile_dir を $smarty->getCompileDir(); へ
 +
$smarty->cache_dir を $smarty->getCacheDir(); へ
 +
 +
===use必須===
 +
new Smartyなどで、Smartyを使ってる箇所に以下を追加
 +
 +
use Smarty\Smarty;

2026年4月5日 (日) 06:28時点における版

smarty5のダウンロード

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

smarty4から5へ

setterへ

$smarty->cache_dir、$smarty->template_dir、$smarty->compile_dir への設定をそれぞれ変更。

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

getterへ

$smarty->template_dir; を $smarty->getTemplateDir(); へ $smarty->compile_dir を $smarty->getCompileDir(); へ $smarty->cache_dir を $smarty->getCacheDir(); へ

use必須

new Smartyなどで、Smartyを使ってる箇所に以下を追加

use Smarty\Smarty;