php100的视频教程 第30课遇到一个问题:
当php文件中输入smarty->clear_all_cache();时出错, 显示如下):
Fatal error:
Uncaught exception 'SmartyException' with message 'Call of unknown
method 'clear_all_cache'.' in
C:\wamp\www\php_lesson_of_smarty\Smarty\sysplugins\smarty_internal_templatebase.php
on line 755 |
---|
( ! ) SmartyException: Call of unknown
method 'clear_all_cache'. in
C:\wamp\www\php_lesson_of_smarty\Smarty\sysplugins\smarty_internal_templatebase.php
on line 755 |
---|
原来在Smarty中在3.0以上版本中不在使用这个clear_all_cache(),而是以$smarty->clearAllCache(); 代替。其中$smarty->clear_cache()用
$smarty->clearCache()代替。