What is Smarty?
Why use it?
Use Cases and Work Flow
Syntax Comparison
Template Inheritance
Best Practices
Crash Course
You may use the Smarty logo according to the trademark notice.
For sponsorship, advertising, news or other inquiries, contact us at:
registerCacheResource() — 注册缓存资源
void registerCacheResource(string name,
Smarty_CacheResource resource_handler);
该函数可以在Smarty中注册一个自定义缓存资源。
参数name
是继承于Smarty_CacheResource的缓存资源名称。
详情参见自定义缓存。
在Smarty2中使用了callback回调函数来调用$cache_handler_func。
Smarty3用Smarty_CacheResource
模块来替代该回调方法。
Example 14.35. registerCacheResource()
<?php $smarty->registerCacheResource('mysql', new Smarty_CacheResource_Mysql()); ?>