读取、把模板中的标签解析成PHP语法编译成PHP文件
[PHP]代码
class Templates{ /*获取站点根目录*/ var $web_root; /*模板目录*/ var $templates_dir; /*编译目录*/ var $compile_dir; /*通过它判断读取的是前台模板还是后台模板*/ var $templates_postion; /*临时存储模板文件内容*/ var $out_put_content; /*临时数组*/ var $_array=array(); var $left_tag='['; var $right_tag=']'; /* *其它类对象 */ var $class_obj; /* *构造函数初始化数据 */ function __construct($v) { $this->web_root=$_SERVER['DOCUMENT_ROOT'].'/'; $this->templates_postion=$v; } /* 读取XML文件获取相应的模板与编译的目录地址 */ function read_site_config_xml() { /* 定义读取XML $xml_dom; */ $xml_dom=simplexml_load_file($this->web_root.'web.config.xml'); $this->compile_dir=$this->web_root.$xml_dom->compileConfig->dir; switch($this->templates_postion) { case 'front': $this->templates_dir=$this->web_root.$xml_dom->templatesConfig->templatesDir; break; case 'admin': $this->templates_dir=$this->web_root.$xml_dom->templatesConfig->adminTemplatesDir; $this->compile_dir.='admin/'; break; } unset($xml_dom); } /* 读取模板文件 */ function read_template($templatename) { $this->read_site_config_xml(); return file_get_contents($this->templates_dir.$templatename); } /* 注册模板变量 */ function assign($tag,$tagvalue=null) { if(is_array($tag)) { foreach($tag as $tagkey=>$tagkeyvalue) { $this->_array[$tagkey]=$tagkeyvalue; } } else { $this->_array[$tag]=$tagvalue; } } /* 向模板中赋值 */ function assgin_value() { foreach($this->_array as $tag=>$tagvalue) { $this->out_put_content=str_replace($this->left_tag.$tag.$this->right_tag,'$this->_array[\''.$tag.'\']',$this->out_put_content); } } /* 输出模板文件 */ function out_put($templatename) { //先检查此文件是否已编译,如果编译则直接输出 if($this->check_compile($templatename)) { echo $this->out_put_content; } else { $this->out_put_content=$this->read_template($templatename); $this->convert_php_tag(); $this->assgin_value(); $this->make_compile($templatename); echo $this->out_put_content; } } /* 编译模板 */ function make_compile($compilename) { $name=$this->compile_dir.$compilename.'.php'; file_put_contents($name,$this->out_put_content,LOCK_EX); ob_start(); include($name); $this->out_put_content=ob_get_contents(); ob_end_clean(); } /* 检查编译 */ function check_compile($compilename) { $this->read_site_config_xml(); $name=$this->compile_dir.$compilename.'.php'; if(file_exists($name)) { ob_start(); include($name); $this->out_put_content=ob_get_contents(); ob_end_clean(); $returnvalue=true; } else { $returnvalue=false; } return $returnvalue; } /* 处理模板文件中PHP语法 */ function convert_php_tag() { $html_file_tag=array ( /*结构控制语句开始、结束标签*/ '<{foreach' => '<?php foreach', '<{if' => '<?php if', '<{for'=>'<?php for', ':}>'=>': ?>', '<{/if}>'=>'<?php endif; ?>', '<{/else}>'=>'<?php else: ?>', '<{/foreach}>'=>'<?php endforeach; ?>', '<{/for}>'=>'<?php endfor; ?>', /*输出数组变量内容标签*/ '<${'=>'<?php echo ', '}$>'=>'; ?>', /*加载文件标签*/ '</{'=>'<?php include($this->web_root.\'', '}/>'=>'\'); ?>', '<{'=>'<?php ', '}>'=>' ;?>' ); foreach($html_file_tag as $key=>$keyvalue) { $this->out_put_content=str_replace($key,$keyvalue,$this->out_put_content); } } /* *引用其它类文件 */ function include_class($classname) { @include($this->web_root.'core/'.$classname.'.php'); $this->class_obj=new $classname(); } /* 释放资源 */ function __destruct() { unset($this->out_put_content); unset($this->_array); unset($this->class_obj); } } ?>

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

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)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.
