PHPCMS 2008 SP3 模板语法规则整理

2024-05-05 02:32

本文主要是介绍PHPCMS 2008 SP3 模板语法规则整理,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一、模板语法规则 


1、变量表示 
{$name} 被解析成 <?=$name?>,表示显示变量$name的值,其中的“name”由英文字母、数字和下划线组成首字母必须是英文字母或者下划线。 


2、常量表示 
{name}被解析成<?=name?>,表示显示常量name的值,其中的“name”由英文字母、数字和下划线组成首字母必须是英文字母或者下划线。 


3、条件判断 
{if *} * {else} * {else} * {/if} 或者 {if *} * {/if},其中{if *}中的*就是此判断语句的条件表达式,符合php的表达式。 


{if $userid} {$username}{else} {$noname}{/if} 


4、循环 
{loop $a $b} * {/loop} 或者 {loop $a $b $c} * {/loop} ,{loop $a $b} * {/loop} 


被解析成 <? if(is_array($a)) foreach($a AS $b) { ?> * <? } ?> 


而 {loop $a $b $c} * {/loop} 则被解析成 <? if(is_array($a)) foreach($a AS $b=>$c) { ?> * <? } ?> 


5.模板包含 
{template 'module name','file name'}例如: {template 'phpcms','header'}表示包含模板目录,phpcms目录下header.html文件 
建议 if 和 loop 语法应该写在html注释符之间,这样可以避免在编辑工具中难看,例如: 
这样写 if 
<!--{if $a>$b}--> <!--{else}--> <!--{/if}--> 
这样写 loop 
<!--{loop $arr $key $val}--> <!--{/loop}--> 


如果您不习惯这套语法,也可以直接在模板中书写php代码,例如<?php echo 'Hello World!';?> 


二、模板制作常用变量 


常用的系统变量 


打开文件 ./include/common.inc.php 


复制代码代码如下:
IP //取得ip 
TIME //取得时间戳,格式(1229393941 )可以通过date 函数格式化一个本地时间/日期,请参考php手册 
URL //取得当前浏览的url地址 
SITE_URL //网站的url地址 
//以上是系统常量,直接调用,如() 
$MODULE //系统模块信息 
[MODULE][phpcms] =&gt; Array 

[module] =&gt; phpcms 
[name] =&gt; Phpcms 
[path] =&gt; 
[url] =&gt; 
[iscore] =&gt; 1 
[version] =&gt; 1.0.0.0 

$MODEL //模型信息 
[MODEL] =&gt; Array 

[1] =&gt; Array 

[modelid] =&gt; 1 
[name] =&gt; 新闻 
[description] =&gt; 
[tablename] =&gt; news 
[itemname] =&gt; 新闻 
[itemunit] =&gt; 篇 
[workflowid] =&gt; 1 
[template_category] =&gt; category 
[template_list] =&gt; list 
[template_show] =&gt; show 
[template_print] =&gt; print 
[ishtml] =&gt; 1 
[category_urlruleid] =&gt; 1 
[show_urlruleid] =&gt; 7 
[enablesearch] =&gt; 1 
[ischeck] =&gt; 1 
[isrelated] =&gt; 1 
[disabled] =&gt; 0 
[modeltype] =&gt; 0 


$CATEGORY //栏目信息 
[CATEGORY] =&gt; Array 

[1] =&gt; Array 

[catid] =&gt; 1 
[module] =&gt; phpcms 
[type] =&gt; 1 
[modelid] =&gt; 0 
[catname] =&gt; 网站介绍 
[style] =&gt; 
[image] =&gt; 
[catdir] =&gt; about 
[url] =&gt; /cms/phpcms_utf/about/index.html 
[parentid] =&gt; 0 
[arrparentid] =&gt; 0 
[parentdir] =&gt; 
[child] =&gt; 1 
[arrchildid] =&gt; 1,2,3,4,5 
[items] =&gt; 0 
[ismenu] =&gt; 0 


$TYPE //类型信息 
[TYPE] =&gt; Array 

[1] =&gt; Array 

[typeid] =&gt; 1 
[module] =&gt; link 
[name] =&gt; 默认分类 
[style] =&gt; 
[typedir] =&gt; 
[url] =&gt; 


$AREA //地区信息 
[AREA] =&gt; Array 

[1] =&gt; Array 

[areaid] =&gt; 1 
[name] =&gt; 北京 
[style] =&gt; 
[parentid] =&gt; 0 
[arrparentid] =&gt; 0 
[child] =&gt; 0 
[arrchildid] =&gt; 1 


$URLRULE //url规则信息 
[URLRULE] =&gt; Array 

[1] =&gt; {$categorydir}/index.{$fileext}|{$categorydir}/{$page}.{$fileext} 
[2] =&gt; category/{$catid}.{$fileext}|category/{$catid}_{$page}.{$fileext} 
[3] =&gt; {$catdir}/index.{$fileext}|{$catdir}/{$page}.{$fileext} 
[4] =&gt; list.php?catid={$catid}|list.php?catid={$catid}&amp;page={$page} 
[5] =&gt; list.php?catid-{$catid}.html|list.php?catid-{$catid}/page-{$page}.html 
[6] =&gt; list-{$catid}-{$page}.html 
[7] =&gt; {$year}/{$month}{$day}/{$contentid}.{$fileext}|{$year}/{$month}{$day}/{$contentid}_{$page}.{$fileext} 
[8] =&gt; {$categorydir}/{$year}/{$month}{$day}/{$contentid}.{$fileext}|{$categorydir}/{$year}/{$month}{$day}/{$contentid}_{$page}.{$fileext} 
[9] =&gt; show/{$contentid}.{$fileext}|show/{$contentid}_{$page}.{$fileext} 
[10] =&gt; show.php?contentid={$contentid}|show.php?contentid={$contentid}&amp;page={$page} 
[11] =&gt; show.php?contentid-{$contentid}.html|show.php?contentid-{$contentid}/page-{$page}.html 
[12] =&gt; show-{$contentid}-1.html|show-{$contentid}-{$page}.html 
[13] =&gt; {$typedir}/index.{$fileext}|{$typedir}/{$page}.{$fileext} 
[14] =&gt; {$typedir}.{$fileext}|{$typedir}_{$page}.{$fileext} 
[15] =&gt; {$typeid}.{$fileext}|{$typeid}_{$page}.{$fileext} 
[16] =&gt; list.php?typeid={$typeid}|list.php?typeid={$typeid}&amp;page={$page} 
[17] =&gt; list.php?typeid-{typeid}.html|list.php?typeid-{typeid}/page-{$page}.html 
[19] =&gt; {$typedir}/{$filename}.{$fileext} 
[20] =&gt; {$typedir}_{$filename}.{$fileext} 
[21] =&gt; {$filename}.{$fileext} 
[22] =&gt; show.php?specialid={$specialid} 
[23] =&gt; show.php?specialid-{$specialid}.html 
[24] =&gt; show-{$specialid}.html 
[25] =&gt; show-{$id}.html 
[26] =&gt; ask/list-{$catid}-{$action}-1.html|ask/list-{$catid}-{$action}-{$page}.html 
[27] =&gt; {$id}.html 
[28] =&gt; show.php?id={$id} 

$M //存储模块信息,在模块下想得到该模块的信息 可以直接使用$M 
本篇文章来源于源码库(www.aspku.com),转载请注明出处 原文链接:http://www.aspku.com/cms/phpcms/3835.html

这篇关于PHPCMS 2008 SP3 模板语法规则整理的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/960627

相关文章

poj3468(线段树成段更新模板题)

题意:包括两个操作:1、将[a.b]上的数字加上v;2、查询区间[a,b]上的和 下面的介绍是下解题思路: 首先介绍  lazy-tag思想:用一个变量记录每一个线段树节点的变化值,当这部分线段的一致性被破坏我们就将这个变化值传递给子区间,大大增加了线段树的效率。 比如现在需要对[a,b]区间值进行加c操作,那么就从根节点[1,n]开始调用update函数进行操作,如果刚好执行到一个子节点,

C++11第三弹:lambda表达式 | 新的类功能 | 模板的可变参数

🌈个人主页: 南桥几晴秋 🌈C++专栏: 南桥谈C++ 🌈C语言专栏: C语言学习系列 🌈Linux学习专栏: 南桥谈Linux 🌈数据结构学习专栏: 数据结构杂谈 🌈数据库学习专栏: 南桥谈MySQL 🌈Qt学习专栏: 南桥谈Qt 🌈菜鸡代码练习: 练习随想记录 🌈git学习: 南桥谈Git 🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈�

poj 1258 Agri-Net(最小生成树模板代码)

感觉用这题来当模板更适合。 题意就是给你邻接矩阵求最小生成树啦。~ prim代码:效率很高。172k...0ms。 #include<stdio.h>#include<algorithm>using namespace std;const int MaxN = 101;const int INF = 0x3f3f3f3f;int g[MaxN][MaxN];int n

数论入门整理(updating)

一、gcd lcm 基础中的基础,一般用来处理计算第一步什么的,分数化简之类。 LL gcd(LL a, LL b) { return b ? gcd(b, a % b) : a; } <pre name="code" class="cpp">LL lcm(LL a, LL b){LL c = gcd(a, b);return a / c * b;} 例题:

uva 1342 欧拉定理(计算几何模板)

题意: 给几个点,把这几个点用直线连起来,求这些直线把平面分成了几个。 解析: 欧拉定理: 顶点数 + 面数 - 边数= 2。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#inc

uva 11178 计算集合模板题

题意: 求三角形行三个角三等分点射线交出的内三角形坐标。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#include <stack>#include <vector>#include <

poj 2104 and hdu 2665 划分树模板入门题

题意: 给一个数组n(1e5)个数,给一个范围(fr, to, k),求这个范围中第k大的数。 解析: 划分树入门。 bing神的模板。 坑爹的地方是把-l 看成了-1........ 一直re。 代码: poj 2104: #include <iostream>#include <cstdio>#include <cstdlib>#include <al

最大流、 最小费用最大流终极版模板

最大流  const int inf = 1000000000 ;const int maxn = 20000 , maxm = 500000 ;struct Edge{int v , f ,next ;Edge(){}Edge(int _v , int _f , int _next):v(_v) ,f(_f),next(_next){}};int sourse , mee

Java 连接Sql sever 2008

Java 连接Sql sever 2008 /Sql sever 2008 R2 import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.Statement; public class TestJDBC

rtmp流媒体编程相关整理2013(crtmpserver,rtmpdump,x264,faac)

转自:http://blog.163.com/zhujiatc@126/blog/static/1834638201392335213119/ 相关资料在线版(不定时更新,其实也不会很多,也许一两个月也不会改) http://www.zhujiatc.esy.es/crtmpserver/index.htm 去年在这进行rtmp相关整理,其实内容早有了,只是整理一下看着方