最新消息: 新版网站上线了!!!

Smarty缓存应用 clear_all_cache();出错问题与解决办法

当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()代替。

转载请注明:谷谷点程序 » Smarty缓存应用 clear_all_cache();出错问题与解决办法