码迷,mamicode.com
首页 > 其他好文 > 详细

生成用户界面

时间:2018-05-21 14:52:31      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:his   char   fun   contents   你好   each   reac   设置   dex   

<?php
class Mytpl{
 //输出页面
 protected $tpl_val = array();
 function display($url){
  $content = file_get_contents($url); //获取模板资源
  foreach ($this->tpl_val as $k => $v) {//翻译
   $content = str_repeat(‘{$‘.$k.‘}‘, $v,$content);
  $complie_url = "文件夹名/".md5($url).".php";//设置临时文件路径    md5()加密
  file_put_contents($complie_url, $content);//输出资源
  include_once $complie_url;
 }
 function assign($k,$v){//将许可的变量放入数组
   $this->tpl_val[$k] = $v;
 }
}
$tpl = new Mytpl();
$tpl->assign(‘a‘,‘哈哈‘);
$tpl->display(‘index2.html‘);

 

 

 

 

----------------------------------index2.html------------------------------

<!DOCTYPE HTML>
<html >
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 </head>
 <body>
 你好{$a}
 </body>
</html>

生成用户界面

标签:his   char   fun   contents   你好   each   reac   设置   dex   

原文地址:https://www.cnblogs.com/index0629/p/9066430.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!