已经过期,请看wecis模板引擎
php代码
<?php class template{ private $assign = array(); public $tplfile_pre; public $tplfile_path_dir = 'template'; //模板路径 public $tplfile_cache_dir = 'cache'; //缓存路径 public $tplfile_cache_open = TRUE; //是否开启缓存 public $tplfile_cache_time = 300; //设置缓存时间 public $tplstring_left = '{-'; //模板中左标签 public $tplstring_right = '-}'; //模板中右标签 function template($tplpre) { if(empty($tplpre)) { exit('Lost Parameter'); } $this->tplfile_pre = md5($tplpre).'.'; } public function assign($tplvar,$value){ $this->assign[$tplvar]=$value; } public function display($tpl) { if($this->tplfile_cache_open) { if(file_exists($this->tplfile_cache_dir.'/'.$this->tplfile_pre.$tpl.'.php')) { $tmpfiletime = fileatime($this->tplfile_cache_dir.'/'.$this->tplfile_pre.$tpl.'.php'); if((time() - $tmpfiletime) >$this->tplfile_cache_time) { unlink($this->tplfile_cache_dir.'/'.$this->tplfile_pre.$tpl.'.php'); include $this->createTemp($tpl); }else{ include $this->tplfile_cache_dir.'/'.$this->tplfile_pre.$tpl.'.php'; } }else{ include $this->createTemp($tpl); } }else{ include $this->createTemp($tpl); } } private function createTemp($tpl) { $content = file_get_contents($this->tplfile_path_dir.'/'.$tpl); $data = preg_replace('/'.$this->tplstring_left.'if\(((.*)+)\)'.$this->tplstring_right.'/',"<?php if(\\1) { ?>",$content); $data = preg_replace('/'.$this->tplstring_left.'else'.$this->tplstring_right.'/','<?php }else{ ?>',$data); $data = preg_replace('/'.$this->tplstring_left.'\/if'.$this->tplstring_right.'/','<?php } ?>',$data); $data = preg_replace('/'.$this->tplstring_left.'/','<?php echo ',preg_replace('/'.$this->tplstring_right.'/',' ?>',$data)); foreach($this->assign as $k=>$v) { if(!is_numeric($v)) { $data = preg_replace('/\$'.$k.'/','\''.$v.'\';',$data); } $data = preg_replace('/\$'.$k.'/',$v,$data); } if($data) { file_put_contents($this->tplfile_cache_dir.'/'.$this->tplfile_pre.$tpl.'.php',$data); return $this->tplfile_cache_dir.'/'.$this->tplfile_pre.$tpl.'.php'; } } public function version() { return 'webtmp 1.0'; } } ?>
Copy after login
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
How Long Does It Take To Beat Split Fiction?
1 months ago
By DDD
R.E.P.O. Save File Location: Where Is It & How to Protect It?
1 months ago
By DDD
R.E.P.O. Best Graphic Settings
2 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
Assassin's Creed Shadows: Seashell Riddle Solution
1 weeks ago
By DDD

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)
