最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Pain 全世界最小最简单的PHP模板引擎 (普通版)
时间:2026-09-20 17:40:02 编辑:袖梨 来源:一聚教程网
PHP全世界最小最简单的模板引擎------Pain (普通版),不同于smarty,所有的变量以{@ @}括起来,有助于大家对模板引擎的了解。 打包下载Pain.php 复制代码 代码如下: <?php class Pain { public $var=array(); public $tpl=array(); //this is the method to assign vars to the template public function assign($variable,$value=null) { $this->var[$variable]=$value; } public function display($template_name,$return_string=false) { //first find whether the tmp file in tmp dir exists. if(file_exists("tmp/temp_file.php")) { unlink("tmp/temp_file.php"); } extract($this->var); $tpl_content=file_get_contents($template_name); $tpl_content=str_replace("{@", "<?php echo ", $tpl_content); $tpl_content=str_replace("@}", " ?>", $tpl_content); //create a file in the /tmp dir and put the $tpl_contentn into it, then //use 'include' method to load it! $tmp_file_name="temp_file.php"; //$tmp is the handler $tmp=fopen("tmp/".$tmp_file_name, "w"); fwrite($tmp, $tpl_content); include "tmp/".$tmp_file_name; } } ?>test.php 复制代码 代码如下: <?php require_once "Pain.php"; $pain=new Pain(); $songyu="songyu nb"; $zhangyuan="zhangyuan sb"; $pain->assign("songyu",$songyu); $pain->assign("zhangyuan",$zhangyuan); $pain->display("new_file.html"); ?>new_file.html 复制代码 代码如下: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w***3.org/TR/html4/strict.dtd"> <html xmlns="http://www.***w3.org/1999/xhtml" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>new_file</title> </head> <body> {@$songyu@}<br/> {@$zhangyuan@} </body> </html>
相关文章
- 企业级 Agent 如何从提效走向增收:落地路径与实践解析 09-20
- Smarty的配置与高级缓存技术分享 09-20
- 制造业AI改造:设备停机报修如何减少售后反复沟通 09-20
- AI 生成代码最容易藏坑的环节有哪些? 09-20
- TMDPHP 模板引擎使用教程 09-20
- Codex 后台任务已结束,为何仍不能立即继续? 09-20