手机
当前位置:查字典教程网 >编程开发 >php教程 >Pain 全世界最小最简单的PHP模板引擎 (普通版)
Pain 全世界最小最简单的PHP模板引擎 (普通版)
摘要:打包下载Pain.php复制代码代码如下:test.php复制代码代码如下:new_file.html复制代码代码如下:new_file{@...

打包下载

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.w3.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>

【Pain 全世界最小最简单的PHP模板引擎 (普通版)】相关文章:

一个简单的自动发送邮件系统(二)

PHP模板引擎smarty详细介绍

一个简单的自动发送邮件系统(三)

PHP.MVC的模板标签系统(三)

写一段简单的PHP建立文件夹代码

PHP生成唯一订单号的方法汇总

用PHP制作静态网站的模板框架(一)

PHP调用三种数据库的方法(3)

PHP 5 数据对象 (PDO) 抽象层与 Oracle

PHP模板引擎SMARTY

精品推荐
分类导航