从Discuz中抠出的模板类

从网上看到几个关于dz的模板类,但都不咋合适,
这个也是改自网上,在php4.4.7下测试暂时没发现问题。。
用得上就拿去,里面还有一个示范。


/************************************************************
    Discuz 模板引擎类
    1、去掉了 Discuz 语言包的功能
    2、移植 Discuz 模板中所有的功能
    3、添加了自动更新缓存及生命周期功能
************************************************************/
header("Content-Type: text/html; charset=utf-8");
require_once ('classes/template.class.php');

$options = array(
    'template_dir' => 'templates/', //指定模板文件存放目录
    'cache_dir' => 'templates/cache/', //指定缓存文件存放目录
    'auto_update' => true, //当模板文件有改动时重新生成缓存 [关闭该项会快一些]
    'cache_lifetime' => 1, //缓存生命周期(分钟),为 0 表示永久 [设置为 0 会快一些]
);

$template = new Template(); //使用单件模式实例化模板类
$template->setOptions($options); //设置模板参数

/*
    // 可以使用以下三种方法设置参数
    $template->setOptions(array('template_dir' => 'templates/default/')); //用于批量设置时使用
    $template->set('template_dir', 'templates/default/');
    $template->template_dir = 'templates/default/');
*/

$testArr = array('testa' => 'KKKKKKKKKKKKKK', 'testb' => 'YYYYYYYYYYYYYY');


$www='www.phpx.com/happy';
$ifopen=-1;
$itemlist=array(
    "a"=>array(
        "color"=>"red",
        "size"=>"big"
        ),
    "b"=>array(
        "color"=>"green",
        "size"=>"small"
        )
);


$str =array(
        $str1 =array(
                "url"=>"/a/b/c/2008-1-28.html",
                "title"=>"Discuz 模板引擎类",
                "author"=>"chinahtml",
                "time"=>"2008-1-28 12:12:50"
        ),
        $str2 =array(
                "url"=>"/a/b/c/2008-1-29.html",
                "title"=>"Discuz 6.0下载",
                "author"=>"discuz",
                "time"=>"2008-1-29 13:18:15"
        ),
        $str3 =array(
                "url"=>"/a/b/c/2008-1-30.html",
                "title"=>"喜悦国际村真喜悦",
                "author"=>"sadly",
                "time"=>"2008-1-30 23:12:24"
        )

);

function getstr($string)
{
        if ($string==1)
        {
                                return $str_array=array(array(
                                "url"=>"/a/b/c/2008-1-29.html",
                                "title"=>"Discuz 6.0下载",
                                "author"=>"discuz",
                                "time"=>"2008-1-29 13:18:15"
                        ));
        } elseif ($string==2) {
                                return $str_array=array(array(
                                "url"=>"/a/b/c/2008-1-30.html",
                                "title"=>"喜悦国际村真喜悦",
                                "author"=>"sadly",
                                "time"=>"2008-1-30 23:12:24"
                        ));
               
        }
}





include($template->getfile('test.htm'));

 

 

 

原帖地址: http://www.phpx.com/happy/thread-144083-1-1.html
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值