|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
怎样学习,大家都知道编程是1门很枯燥的事业,所以大家一定要有兴趣,可能刚开始打算学的时候是因为别人说php有多好,php多么流行,但是后来伴随着学习的深入,你的这些模板 这个是对照好用的模板,比Smarty,FastTemplate and PHPLIB Template都好用
中文文档案 http://www.cqlc.net/cn_cqlctpl.txt
这里是演示地址:http://www.cqlc.net/web/tml.php
请尊敬作者的休息功效,上面演示的3个文件下载地址:http://www.cqlc.net/cqlctpl.zip
我的主页是:http://www.cqlc.net
1 标签:
(1),变量:{$key} 可所以普通变量,数组和类的成员,但字符不克不及用 " ,只能是单引号 '
例子: {$value} ,{$a[0]} ,{$this->a['color']} 如许写是错的{$this->["color"]}
(2),轮回:{loop:轮回语句}其他代码{/loop} 撑持for和while轮回
例子: {loop:for($i=10;$i<=20;$i++)} test {$i} {/loop} 输入(test)20~30的数
{loop:while($i++<10)} test {$a[$i]} {/loop} 输入(test)20~30的数组
(3),逻辑:{logi:前提语句}其他代码{/logi} 撑持if,elseif,else
例子: {logi:if($i==1)} test {$i} {/logi}
{logi:elseif($i==2)} test {$a[$i]} {/logi}
{logi:else} test {$a[$i]} {/logi}
(4),法式:{exec:语句} 法式段,可所以函数,注重字符只能用 ',不克不及用"
例子 : {exec:$a='hello'.$i} 准确 {exec:$a="hello$i"}毛病
{exec:echo $a}
{exec:echo time()}
{exec:$this->outpage(1,2,'index.php')}
(5),{* 模板正文*} 例子:{*这里不会输入的*}
2,模板输入 :
只输入:eval(cqlctpl(模板文件)) 例子:eval(cqlctpl("1.tml"))
套模板:{exec:eval(cqlctpl(模板文件))} 例子:{exec:eval(cqlctpl($Templatefile))}
{*这里是在模板中失落用其他模板文件*}
3,函数原代码:
function cqlctpl($file) /*函数作者,cqlc,主页:http://www.cqlc.net,
中文档案 http://www.cqlc.net/cn_cqlctpl.txt */
{
$fp=fopen($file,"r");
$msg="echo\"".str_replace("\"","\\\"",fread($fp,filesize($file)))."\";";
fclose($fp);
$oldstr=array(0=>"/\{loop:([^\}]+)\}(.+)\{\/loop\}/si",
1=>"/\{logi:([^\}]+)\}(.+)\{\/logi\}/si",
2=>"/\{exec:([^\}]+)\}/si",
3=>"/(\{\*[^\*]+\*\})/si"
);
$newstr=array(0=>"\";\\1{echo\"\\2\";}echo\"",
1=>"\";\\1{echo\"\\2\";}echo\"",
2=>"\";\\1;echo\"",
3=>""
);
return preg_replace($oldstr,$newstr,$msg);
}
4,模板举例:
模板文件:1.tml的原代码
<h1> {$title} (1.tml) </h1> {*this is a title*}
{loop:for($i=0;$i<10;$i++)} {*loop start*}
<p> {$body} is {$array[$i]} {*out the msg*}
{logi:if($i>5)} <p> {$i} is biger than 5 {*logic start*}
{/logi} {*login end*}
{/loop} {*loop end*}
{exec:$time=time()} {*exec start and end*}
{exec:echo '<p>time is '.$time} {*exec start and end*}
{exec:eval(cqlctpl('2.tml'))} {*this is include other tml*}
模板文件:2.tml的原代码
<P> <h1>this is other tml(2.tml)</h1>
{ exec:test()}
演示的php剧本
tml.php:
<?
function cqlctpl($file) /*函数作者,cqlc,主页:http://www.cqlc.net,
中文文档案 http://www.cqlc.net/cn_cqlctpl.txt */
{
$fp=fopen($file,"r");
$msg="echo\"".str_replace("\"","\\\"",fread($fp,filesize($file)))."\";";
fclose($fp);
$oldstr=array(0=>"/\{loop:([^\}]+)\}(.+)\{\/loop\}/si",
1=>"/\{logi:([^\}]+)\}(.+)\{\/logi\}/si",
2=>"/\{exec:([^\}]+)\}/si",
3=>"/(\{\*[^\*]+\*\})/si"
);
$newstr=array(0=>"\";\\1{echo\"\\2\";}echo\"",
1=>"\";\\1{echo\"\\2\";}echo\"",
2=>"\";\\1;echo\"",
3=>""
);
return preg_replace($oldstr,$newstr,$msg);
}
function test(){echo"<p>这是第二个模板文件哟 ,接待你的测试";} /*界说一个函数*/
$title="这是第一个模板文件";
$body="这里已入手下手输入了 ";
for($i=0;$i<10;$i++)$array[$i]="hello world $i";
eval(cqlctpl("1.tml"));
5,模板输入了局,见演示:http://www.cqlc.net/web/tml.php
这是第一个模板文件 (1.tml)
这里已入手下手输入了 is hello world 0
这里已入手下手输入了 is hello world 1
这里已入手下手输入了 is hello world 2
这里已入手下手输入了 is hello world 3
这里已入手下手输入了 is hello world 4
这里已入手下手输入了 is hello world 5
这里已入手下手输入了 is hello world 6
6 is biger than 5
这里已入手下手输入了 is hello world 7
7 is biger than 5
这里已入手下手输入了 is hello world 8
8 is biger than 5
这里已入手下手输入了 is hello world 9
9 is biger than 5
time is 1059227729
this is other tml(2.tml)
这是第二个模板文件哟 ,接待你的测试
另外要叮嘱各位的是,抵御诱惑,ASP/PHP/JSP/.NET的对比也许会让你无所适从,你也许学了一半PHP,又开始打C#的主意,或者有人说JAVA很强,这个时候的你绝对不能动摇,哪怕你真想学。 |
|