Smarty使用自定义资源的方法

5年以前  |  阅读数:473 次  |  编程语言:PHP 

本文实例讲述了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程序设计有所帮助。

 相关文章:
PHP分页显示制作详细讲解
SSH 登录失败:Host key verification failed
获取IMSI
将二进制数据转为16进制以便显示
获取IMEI
文件下载
贪吃蛇
双位运算符
PHP自定义函数获取搜索引擎来源关键字的方法
Java生成UUID
发送邮件
年的日历图
提取后缀名
在Zeus Web Server中安装PHP语言支持
让你成为最历害的git提交人
Yii2汉字转拼音类的实例代码
再谈PHP中单双引号的区别详解
指定应用ID以获取对应的应用名称
Python 2与Python 3版本和编码的对比
php封装的page分页类完整实例