<?php
require_once('Smarty.class.php');
class MySmarty extends Smarty
{
public function __construct ()
{
テンプレートディレクトリの定義など・・・
}
public function __destruct ()
{
}
}
?>
以下の8行目の記述をしないとわけわかんないエラーが出ます。
<?php
require_once('Smarty.class.php');
class MySmarty extends Smarty
{
public function __construct ()
{
parent::__construct();
テンプレートディレクトリの定義など・・・
}
public function __destruct ()
{
}
}
?>
わたしの環境では以下のようなエラーメッセージ(apache)になっていました。
PHP Fatal error: Call to a member function create() on null in /usr/local/share/smarty3-php56/sysplugins/smarty_internal_templatecompilerbase.php on line 334