第36章 Zend_Viewとか参考にやってみた。 Zend_View_Smarty.php(ほとんど36章のサンプルまま) <?php require_once 'Zend/View/Interface.php'; require_once 'Smarty.class.php'; class Zend_View_Smarty implements Zend_View_Interface { /** * Smarty object * @var Smarty */ protected $_smarty; /** * コンストラクタ * * @param string $tmplPath * @param array $extraParams * @return void */ public function __construct($tmplPath = null, $extraParam