-
eq(=), neq(!=), gt(>), egt(>=), lt(<), elt(<=), heq(===), nheq(!==) for默认的比较方式是小于 <for start="开始值" end="结束值" step="步进值" comparison="符号(默认lt)" name="循环变量名" > </for>查看全部
-
foreach比volist少一些功能,那以后就用volist好了查看全部
-
$this->name = 'TMAC' 是给模板中的变量$name赋值,在模板html中输出$name $this->assign('name', 'TMAC'),前面的是变量名,后面的是变量的值 $this->assign('name', 'TMAC')->assign('sex', 'man')可以实现连续赋值查看全部
-
设置多个伪静态 URL_HTML_SUFFIX=html|shtml|xml,用|分隔多个伪静态后缀查看全部
-
默认模式(pathinfo模式):1 http://localhost/test/index.php/Index/user/id/1.html 普通模式:0 http://localhost/test/index.php?m=Index&a=user&id=1 重写模式:2 http://localhost/test/Index/user/id/1.html 兼容模式:3(当不知道服务器的配置文件时候,以兼容模式运行项目不会出现错误) http://localhost/test/index.php?s=/Index/user/id/1.html U('地址','参数','伪静态','是否跳转','显示域名'); U('模块/方法', array('id'=>1)), 'xxxx html htm sthml', true/false, 'localhost') 一般是用到前面两个就差不多了查看全部
-
common: 存放当前项目的公共函数 conf:当前项目的配置文件 Lang:当前项目的的语言包 Lib:当前项目的控制器和模型 RunTime:当前项目运行时的文件查看全部
-
eq = neq != gt > egt >= lt < elt <= heq === nheq !== <for start="开始值" end="结束值" step="步进值" comparison="符号(默认lt)" name="循环变量名" > </for>查看全部
-
limit(start,length) page(页码,每页条数=20) 每页条数默认为20查看全部
-
field($string,false),第二个参数为false时,查询字段为$string的信息;为true时,查询字段为非$string的信息查看全部
-
连续操作 1、order排线 order(字符串),多个用逗号隔开查看全部
-
URL_MODEL查看全部
-
富士康。。。。。。查看全部
-
实例化公共模型 $user = new CommonModel(); $user->strmake('aaaa'); //公共工具函数 实例化空模型 $model = M(); $model->query('select * from mk_user'); $model->excute('update.....');查看全部
-
数据库 惰性链接 多个主服务器 明白什么是主从操作查看全部
-
MVC是一种设计模式,强制性的使应用程序的输入、处理和输出分开,分为三个核心部件:模型(Model),视图(View),控制器(Controller)查看全部
举报
0/150
提交
取消