Smarty使用自定义资源的方法
更新时间:2015年08月08日 16:15:22 作者:cooledit2730
这篇文章主要介绍了Smarty使用自定义资源的方法,实例分析了smarty自定义资源的定义与使用技巧,具有一定参考借鉴价值,需要的朋友可以参考下
本文实例讲述了Smarty使用自定义资源的方法。分享给大家供大家参考。具体如下:
<?php
// put these function somewhere in your application
function db_get_template ($tpl_name, &$tpl_source, &$smarty_obj)
{
// do database call here to fetch your template,
// populating $tpl_source
$sql = new SQL;
$sql->query("select tpl_source
from my_table
where tpl_name='$tpl_name'");
if ($sql->num_rows) {
$tpl_source = $sql->record['tpl_source'];
return true;
} else {
return false;
}
}
function db_get_timestamp($tpl_name, &$tpl_timestamp, &$smarty_obj)
{
// do database call here to populate $tpl_timestamp.
$sql = new SQL;
$sql->query("select tpl_timestamp
from my_table
where tpl_name='$tpl_name'");
if ($sql->num_rows) {
$tpl_timestamp = $sql->record['tpl_timestamp'];
return true;
} else {
return false;
}
}
function db_get_secure($tpl_name, &$smarty_obj)
{
// assume all templates are secure
return true;
}
function db_get_trusted($tpl_name, &$smarty_obj)
{
// not used for templates
}
// register the resource name "db"
$smarty->register_resource("db", array("db_get_template",
"db_get_timestamp",
"db_get_secure",
"db_get_trusted"));
// using resource from php script
$smarty->display("db:index.tpl");
?>
希望本文所述对大家基于smarty的php程序设计有所帮助。
相关文章
thinkphp ajaxfileupload实现异步上传图片的示例
本篇文章主要介绍了thinkphp ajaxfileupload实现异步上传图片的示例,具有一定的参考价值,有兴趣的可以了解一下2017-08-08
laravel框架使用FormRequest进行表单验证,验证异常返回JSON操作示例
这篇文章主要介绍了laravel框架使用FormRequest进行表单验证,验证异常返回JSON操作,涉及laravel表单请求类的创建、使用及异常处理相关操作技巧,需要的朋友可以参考下2020-02-02
Laravel Eloquent ORM 实现查询表中指定的字段
今天小编就为大家分享一篇Laravel Eloquent ORM 实现查询表中指定的字段,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2019-10-10


最新评论