首页 > 开发 > PHP > 正文

Smarty使用自定义资源的方法

2024-05-04 23:38:39
字体:
来源:转载
供稿:网友

这篇文章主要介绍了Smarty使用自定义资源的方法,实例分析了smarty自定义资源的定义与使用技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了Smarty使用自定义资源的方法。分享给大家供大家参考。具体如下:

 

  1. <?php 
  2. // put these function somewhere in your application 
  3. function db_get_template ($tpl_name, &$tpl_source, &$smarty_obj
  4. // do database call here to fetch your template, 
  5. // populating $tpl_source 
  6. $sql = new SQL; 
  7. $sql->query("select tpl_source 
  8. from my_table 
  9. where tpl_name='$tpl_name'"); 
  10. if ($sql->num_rows) { 
  11. $tpl_source = $sql->record['tpl_source']; 
  12. return true; 
  13. else { 
  14. return false; 
  15. function db_get_timestamp($tpl_name, &$tpl_timestamp, &$smarty_obj
  16. // do database call here to populate $tpl_timestamp. 
  17. $sql = new SQL; 
  18. $sql->query("select tpl_timestamp 
  19. from my_table 
  20. where tpl_name='$tpl_name'"); 
  21. if ($sql->num_rows) { 
  22. $tpl_timestamp = $sql->record['tpl_timestamp']; 
  23. return true; 
  24. else { 
  25. return false; 
  26. function db_get_secure($tpl_name, &$smarty_obj
  27. // assume all templates are secure 
  28. return true; 
  29. function db_get_trusted($tpl_name, &$smarty_obj
  30. // not used for templates 
  31. // register the resource name "db" 
  32. $smarty->register_resource("db"array("db_get_template"
  33. "db_get_timestamp"
  34. "db_get_secure"
  35. "db_get_trusted")); 
  36. // using resource from php script 
  37. $smarty->display("db:index.tpl"); 
  38. ?> 

希望本文所述对大家基于smarty的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表