-
if结构查看全部
-
条件修饰符查看全部
-
调节器:|capitalize |cat:"yes." |date_format/date_format:"%B %e %Y %H:%M:%S" |feault:"hello"(空变量赋值) |escape(转码) |upper |lower |nl2br --> 换行符变成<br/>查看全部
-
单一入口机制查看全部
-
smarty五配置查看全部
-
实例化视图函数查看全部
-
模型调用函数查看全部
-
更详细的说明查看全部
-
函数结构查看全部
-
控制器函数的调用函数。查看全部
-
<?php //smarty文件的引入 require("../smarty/Smarty.class.php"); //实例化smarty $smarty = new Smarty(); //五配置两方法 $smarty->left_delimiter="{"; //左定界符 $smarty->right_delimiter="}"; //右定界符 $smarty->template_dir="tpl"; //html模板地址 $smarty->compile_dir="template_c"; //模板编译文件生成的文件 $smarty->cache_dir="cache"; //缓存文件目录 $smarty->caching=true; //开启缓存 $smarty->cache_lifetime=120; //缓存时间 $smarty->assign("articletitle","this is article title"); $smarty->display("test.tpl"); ?> 1、Smarty的核心代码都是libs这个文件夹里 2、Smarty.class.php 是Smarty类的主文件 3、SmartyBCclass.php是提升Smarty的上下版本兼容性 4、用require引入Smarty.class.php。注意大小写。 5、new Smarty(); 实例化Smarty。查看全部
-
eval()函数调用简单但是不安全 eval('$obj = new '.$name.'Controller();$obj->'.$method.'();');可用下面的代码代替: $controller = $name.'controller'; $obj = new $controller(); $obj = $method();查看全部
-
$db作用是保存对数据库操作类(mysql.class.php)实例化后产生的对象查看全部
-
DB类中各方法的作用是实例化并调用数据库操作类(mysql.class.php)中的方法,这样就不用每次操作数据库都对mysql.class.php进行实例化查看全部
-
strip_tags()函数去处变量中的html标签,mb_substr()函数截取设定数量的字符查看全部
举报
0/150
提交
取消