MW211 EXIT

devlog
Smarty/出力結果を変数に格納
2018年05月07日
┌──────────────────────────────────────┐
│$smarty = new Smarty;                                                       │
│$smarty->display('テンプレート.tpl');                                       │
└──────────────────────────────────────┘
通常は、上記のように出力するのだが、
どういう結果なのかログで確認したりしたくて変数に代入したい場合。

display()をfetch()に切り替えてあげればよい。
┌──────────────────────────────────────┐
│$smarty = new Smarty;                                                       │
│$変数 = $smarty->fetch('テンプレート.tpl');                                 │
└──────────────────────────────────────┘
分類:Smarty