利用PHPLIB加入模板功能

简介: 首先在PHP根目录中输入以下代码,并存为mytempate1.php 并在此文件夹下新建templates目录,放入模板文件,本处模板文件为mytemplate1.ihtml,内容为 祝贺!你赢了一辆{some_color}honda prelude! 运行http://localhost:880/mytempate1.

首先在PHP根目录中输入以下代码,并存为mytempate1.php

<?php
include "template.inc";
$my_color="blue";
//将在后面使用
$t=new template("E:\\Myphp\\templates");
$t->set_file("myfileHandle","mytemplate1.ihtml");
//设置myfileHandle=我们的模板
$t->set_var("some_color",$my_color);
$t->parse("myoutput","myfileHandle");
$t->p("myoutput");
?>

并在此文件夹下新建templates目录,放入模板文件,本处模板文件为mytemplate1.ihtml,内容为

祝贺!你赢了一辆{some_color}honda prelude!

运行http://localhost:880/mytempate1.php(880可以改成你使用的PHP端口号),会显示

祝贺!你赢了一辆bluehonda prelude!

相关文章
|
7月前
|
编译器 C++
C++-模板基础
C++-模板基础
39 0
|
7月前
树链剖分模板
树链剖分模板
51 0
|
4月前
|
编译器 C++
【C++】——初识模板
【C++】——初识模板
【C++】——初识模板
|
29天前
|
编译器 C++
【c++】模板详解(1)
本文介绍了C++中的模板概念,包括函数模板和类模板,强调了模板作为泛型编程基础的重要性。函数模板允许创建类型无关的函数,类模板则能根据不同的类型生成不同的类。文章通过具体示例详细解释了模板的定义、实例化及匹配原则,帮助读者理解模板机制,为学习STL打下基础。
31 0
|
6月前
|
C++
C++:模板
C++:模板
35 3
|
7月前
|
C++
C++模板 - 模板的使用
C++模板 - 模板的使用
38 0
|
7月前
|
算法 C++ 容器
|
7月前
|
Java 编译器 程序员
C嘎嘎模板
C嘎嘎模板
69 0
|
编译器 C++
【C++】初识模板
【C++】初识模板
37 0
下一篇
DataWorks