php超实用的模板引擎
方法:
$this->assign('style',$style);//变量 $this->display();//模板 <?php /*配制*/ $config=array( /* 数据库设置 */ 'DB_TYPE' => 'mysql', // 数据库类型 'DB_HOST' => 'localhost', // 服务器地址 'DB_NAME' => 'php', // 数据库名 'DB_USER' => 'root', // 用户名 'DB_PWD' => '123', // 密码 'DB_PREFIX' => 'jiaodu_', // 数据库表前缀 'DB_CHARSET' => 'utf8', // 数据库编码默认采用utf8 /* SESSION设置 */ 'SESSION_START' => 'user', //session方式,文件方式:file, 数据库设置为user /* 模板引擎设置 */ 'TMPL_ADMIN_PATH' =>'admin',//后台目录名称 'TMPL_COMPILE_PATH' =>'/Runtime',//读写目录 'TMPL_PATH' =>'/template',//模板路径 'TMPL_TEMPLATE_SUFFIX' => 'html', // 默认模板文件后缀 'TMPL_L_DELIM' => '{', // 模板引擎普通标签开始标记 'TMPL_R_DELIM' => '}', // 模板引擎普通标签结束标记 'TMPL_STRIP_SPACE' => true, // 是否去除模板文件里面的html空格与换行 'TMPL_CACHE_ON' => true, // 是否开启模板编译缓存,设为false则每次都会重新编译,一般用于模板调试 /* URL设置 */ 'URL_HTML_SUFFIX' => 'html', // URL伪静态后缀设置 'URL_PATHINFO_MODEL' => 2, // URL模式,1不隐藏、2隐藏入口文件[需要规则支持] /*其它设置*/ 'PASS_ENCRYPT' =>'www.php.cn',//加密因子 );
[PHP]代码
<?php /** * 模板解析类 * @author 角度 QQ:1286522207 * */ class template extends Action{ private $config; private $CompileDir;//编译目录 private $templateDir;//模板目录 private $templateFile; private $debuy=1;//是否调试 private $assign;//变量 public function __construct($templateFile){ $this->config(); $this->templateFile=$templateFile; } private function config(){ global $config; $this->config=$config; $this->CompileDir=$this->config['TMPL_COMPILE_PATH'].'/Compile'; $this->templateDir=$this->config['TMPL_PATH']; $this->debuy=$this->config['TMPL_CACHE_ON']; } /** * 检查编译目录 */ public function is_CompileDir(){ $dir=APP_PATH.$this->CompileDir; if (!is_dir($dir)){ if (!mkdir($dir)){ die('编译目录自动创建失败,请手动创建'); } } if (!is_writeable($dir)){ die('编译目录没有写入权'); } } /** * 注入变量 */ public function assign($assign) { $this->assign=$assign; } /** * 输出模板 */ public function display(){ $this->is_CompileDir(); $this->CompileCheck(); } /** * 检查编译 */ private function CompileCheck(){ $this->is_CompileDir(); $filename=APP_PATH.$this->CompileDir.'/'.md5($this->templateFile).'.php'; if ($this->debuy || !is_file($filename)){ $this->tmplstrtpspace($filename); } foreach ($this->assign as $key=>$row){ $$key=$row; } include $filename; } /** * 格式化模板并写入编译 */ private function tmplstrtpspace($filename){ if ($this->config['TMPL_STRIP_SPACE']){ $find = array("~>\s+<~","~>(\s+\n|\r)~"); $replace = array("><",">"); $tmplContent = preg_replace($find, $replace,$this->templateCheck()); }else { $tmplContent = $this->templateCheck(); } if (file_put_contents($filename,trim($tmplContent))){ return true; }else { die('编译写入失败'); } } /** * 检查模板 */ private function templateCheck(){ $PATH=APP_PATH.$this->templateDir.'/'.$this->templateFile.'.html'; if (is_file($PATH)){ return $this->template_compile(file_get_contents ( $PATH )); }else { die('模板:'.$this->templateFile.'.html 不存在'); } } /** * 编译模板 */ private function template_compile($template_Conver){ if (empty($template_Conver)){ return $template_Conver; }else { $_Left= $this->config['TMPL_L_DELIM']; $_Right= $this->config['TMPL_R_DELIM']; $template_Preg [] = '/<\?(=|php|)(.+?)\?>/is'; $template_Preg [] = '/' . $_Left . '(else if|elseif) (.*?)' . $_Right . '/i'; $template_Preg [] = '/' . $_Left . 'for (.*?)' . $_Right . '/i'; $template_Preg [] = '/' . $_Left . 'while (.*?)' . $_Right . '/i'; $template_Preg [] = '/' . $_Left . '(loop|foreach) (.*?)' . $_Right . '/i'; $template_Preg [] = '/' . $_Left . 'if (.*?)' . $_Right . '/i'; $template_Preg [] = '/' . $_Left . 'else' . $_Right . '/i'; $template_Preg [] = '/' . $_Left . "(eval|_)( |[\r\n])(.*?)" . $_Right . '/is'; $template_Preg [] = '/' . $_Left . '_e (.*?)' . $_Right . '/is'; $template_Preg [] = '/' . $_Left . '_p (.*?)' . $_Right . '/i'; $template_Preg [] = '/' . $_Left . '\/(if|for|loop|foreach|eval|while)' . $_Right . '/i'; $template_Preg [] = '/' . $_Left . '((( *(\+\+|--) *)*?(([_a-zA-Z][\w]*\(.*?\))|\$((\w+)((\[|\()(\'|")?\$*\w*(\'|")?(\)|\]))*((->)?\$?(\w*)(\((\'|")?(.*?)(\'|")?\)|))){0,})( *\.?[^ \.]*? *)*?){1,})' . $_Right . '/i'; $template_Preg [] = "/( | ){0,}(\r\n){1,}\";/"; $template_Preg [] = '/' . $_Left . '(\#|\*)(.*?)(\#|\*)' . $_Right . '/'; $template_Preg [] = '/' . $_Left . '\%([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)' . $_Right . '/'; $template_Replace [] = '<?\\1\\2?>'; $template_Replace [] = '<?php }else if (\\2){ ?>'; $template_Replace [] = '<?php for (\\1) { ?>'; $template_Replace [] = '<?php while (\\1) { ?>'; $template_Replace [] = '<?php foreach ((array)\\2) { $__i++; ?>'; $template_Replace [] = '<?php if (\\1){ ?>'; $template_Replace [] = '<?php }else{ ?>'; $template_Replace [] = '<?php \\3; ?>'; $template_Replace [] = '<?php echo \\1; ?>'; $template_Replace [] = '<?php print_r(\\1); ?>'; $template_Replace [] = '<?php } ?>'; $template_Replace [] = '<?php echo \\1;?>'; $template_Replace [] = ''; $template_Replace [] = ''; $template_Replace [] = '<?php echo $this->lang_array[\'\\1\'];?>'; return preg_replace ( $template_Preg, $template_Replace, $template_Conver ); } } }

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



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

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
