- 论坛徽章:
- 0
|
附件中有详细使用方法,在这里就不说了。
附件如有误请从 http://hellex.cn/project/php/het/package/ 获取
有问题联系我,Hellex@live.com
[PHP]
<?php
/**
* HET: the light&fast PHP compiling template engine
*
* @author : Hellex <Hellex@live.com>
* @touch : 22.08.2003
* @link : http://www.hellex.cn
* @version : 2.1.0 (Require PHP version 4.3.0 or later)
*
* Usage Example I :
*
* $page = new HET ;
* $page->out( 'templates/template.html' ) ;
*
* Usage Example II :
*
* $page = new HET ;
* $page->compile_dir = 'templates_c/usage' ;
* $data = array( 'abc' => 'I am ABC' , 'hello' => 'I am Hello' ) ;
* $page->out( 'templates/template.html' , $data ) ;
*
* Usage Example III :
*
* $page = new HET ;
* $data = array( 'abc' => 'I am ABC' , 'hello' => 'I am Hello' ) ;
* $page->out( 'templates/template.html' , $data , 'templates_c/usage' ) ;
*
* Usage Example IV :
*
* $page = new HET ;
* $page->cache_lifetime = 3600 ;
* $page->use_cache() ;
* $data = array( 'abc' => 'I am ABC' , 'hello' => 'I am Hello' ) ;
* $page->out( 'templates/template.html' , $data ) ;
*
*/
//...
[/PHP]
[ 本帖最后由 Hellex 于 2009-5-21 18:50 编辑 ] |
|