当前位置:首页 > PHP教程 > Smarty > 列表

Smarty使用自定义资源的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-16 10:11:21 浏览: 评论:0 

这篇文章主要介绍了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.  } 
  16. function db_get_timestamp($tpl_name, &$tpl_timestamp, &$smarty_obj
  17.  // do database call here to populate $tpl_timestamp. 
  18.  $sql = new SQL; 
  19.  $sql->query("select tpl_timestamp 
  20.    from my_table 
  21.    where tpl_name='$tpl_name'"); 
  22.  if ($sql->num_rows) { 
  23.  $tpl_timestamp = $sql->record['tpl_timestamp']; 
  24.  return true; 
  25.  } else { 
  26.  return false; 
  27.  } 
  28. function db_get_secure($tpl_name, &$smarty_obj
  29.  // assume all templates are secure 
  30.  return true; 
  31. function db_get_trusted($tpl_name, &$smarty_obj
  32.  // not used for templates 
  33. // register the resource name "db" 
  34. $smarty->register_resource("db"array("db_get_template"
  35.      "db_get_timestamp"
  36.      "db_get_secure"
  37.      "db_get_trusted")); 
  38. // using resource from php script 
  39. $smarty->display("db:index.tpl"); 
  40. ?> 

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

Tags: Smarty自定义资源

分享到: