- 论坛徽章:
- 0
|
- <?php
- /**
- * HET: the light&fast PHP compiling template engine
- *
- * @author : Hellex <[email]Hellex@live.com[/email]>
- * @touch : 22.08.2003
- * @link : [url]http://www.hellex.cn[/url]
- * @version : 2.2.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 ) ;
- *
- */
复制代码 |
|