Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Smarty2 で書かれた古い Web ページを見つけましたが、これがわかりません。次の違いを教えてください。
$_Html = new SmartyC(TRUE); and $_Html = new Smarty();
マニュアルに SmartyC() が見つかりません。
Web サイト プロジェクト全体で を検索しclass SmartyCます。次のような方法で元の Smarty クラスを拡張するカスタム クラスが見つかると思います。
class SmartyC
class SmartyC extends Smarty { function _construct($b) { // do something with $b like // if($b) // { // $this->caching = true; // } } }