-
update更新
$update['scroe']='60';
$where['id']=1;
$data=M('User')->where($where)-save($update);
查看全部 -
select查询
1、直接使用字符串进行查询
$data=M('User')->where('id=1')->select();
2、使用数组方式进行查询
$where['Username']='xiaoming';
$where['id']=2;
$where['_logic']='or';//不加为默认AND,加上中连接符为OR
$data=M('user')->where($where)->select();
3、表达式查询 eq neq egt gt lt elt between in like not between not in
$where['字段名']=array(表达式,查询条件);
$where['id']=array('lt',3);
$where['user_name']=array('like',array('%ming','xiao%'));
4、区间查询
$where['id']=array(array('lt',1),array('gt',2),'or');
$data=M('User')->where($where)->select();
5、混合用法
$where['id']=array('gt',10);
$where['_string']=' score >10';//加字符串
$data=M('User')->where($where)->select();
6、统计用法
/*
*count 统计数量 可选
*max 获取最大值 必须必 需要传入统计的字段名
*min 获取最大值 必须必 需要传入统计的字段名
*avg 获取最大值 必须必 需要传入统计的字段名
*sum 获取最大值 必须必 需要传入统计的字段名
*/
$data=M('User')->count();
$data=M('User')->sum('id');
查看全部 -
数据库,添加数据
查看全部 -
数据库实例化模型
3、公共模型
4、空模型
查看全部 -
数据库实例化模型
1、基础模型model
2、自定义模型
查看全部 -
数据库配置
查看全部 -
单个参数调试 trace('name',C('name'));
会在游览器调试栏显示
查看全部 -
测试程序运行的时间
$G('run')
程序开始
程序结束
echo G('run','end')//毫秒
查看全部 -
1、新建项目调试文件,在conf文件夹下创建debug.php
2、开启调试,trace
'SHOW_PAGE_TRACE'=>true
查看全部 -
三元运算符
查看全部 -
区间标签
range标签type只能用in ,notin不能用between ,notbetween
查看全部 -
比较标签
eq = neq != 等
查看全部 -
for循环使用
comparison='elt'
默认小于等
查看全部 -
模板中使用,(等于,不等于,大于,大于等于,小于,小于等于,恒等于,不恒等于)
eq =
neq !=
gt >
egt>=
lt<
elt<=
heq ===
nheq !===
查看全部 -
volist和foreach循环
volist可以截取数据
foreach不可
查看全部
举报