今更Smarty…って思わないことはないのですが使われているので仕方が無い せめて2系から3系にアップグレードできないかなと思って軽い気持ちで試したら3日ほどハマりましたよ Download | Smarty Smartyクラスを使わずに互換用のSmartyBCを使う ~~~ $this->_smarty = new Smarty(); ~~~ ↓ ~~~ require_once ‘Smarty/libs/SmartyBC.class.php’; $this->_smarty = new SmartyBC(); ~~~ もっと簡単に書くにはextendsして__constructを使う ~~~ class MySmarty extends SmartyBC { function __construct() { parent::__construct(); $this->allow_php
