-
交给模板 $this->assign('person',$person);//交给模板使用的数组 <volist name='persion' id='data' offset='1' length='2' empty='我没数据' ><!--在模板中循环输出数组:其中offset设定起始,length从起始开始多少个,empty设置没有数据时的提示--> {$data['name']}========{$data['age']}<br/></volist> 与PHP的foreach标签类似,功能更强大, <foreach name='person' item='data'> $data['name']}========{$data['age']} </foreach>查看全部
-
field($string,false) $string传入多字段名,多字段用逗号分隔查看全部
-
连续操作查看全部
-
echo M('User')->delete(主键值)查看全部
-
查询操作查看全部
-
//1.直接用字符串进行查询 $data=M('User')->where('id=1')->select(); //2.使用数组方式进行查询 $where['user_name']="xiaoming";//查询条件 $where['_logic']='or';//查询方式 //3. 表达式查询 //eq(=) neq(!=) egt(>=) gt(>) lt(<) elt(<=) //like(like) between (between and) not between(not between and) in (in) not in (not in) and(and[默认]) //$where['字段名']=array('表达式',查询条件); //$where ['id']=array('lt',3);//查询<3的数据 $where['id']=array('between','1,8');//查询id是1到8的数据 $where['id']=array('lt'3);//查询id<3的数据 $where['user_name']=array('like',array('%ming','xiao%'));//查询user_name模糊等于%ming 模糊等于xiao的数据 //4.区间查询 where['id']=array(array('gt',100),array('lt',3),'or');//查询>100 或者<3的数据 //5.混合查询 $where['id']=array('gt' 10);//查询id>10的数据 $where['_string']='scoer>10';// 查询scoer>10的数据 //6.统计用法 // count统计数量 可选 // max 获取最大值 必须传入 统计的字段名 // min 获取最小值 必须传入 统计的字段名 // avg 平均值 必须传入 统计的字段名 // sum 求和 必须传入 统计的字段名 $data =M('user')->min('id');//查询语句(其中id是传入的值)查看全部
-
几种查询方法查看全部
-
1、实例化基础模型model $user = new Model('user');//表名,表前缀,数据库连接信息 $user = M('user'); 2.实例化用户自定义模型 $user = new UserModel(); $user = D('User'); 3、实例化公共模型 $user = new CommonModel(); 4、实例化空模型 $model = M(); $model->query($sql); //读取日常 select $model->execute($sql);//写入 update insert查看全部
-
比较有两种方式,建议用第一种,查看全部
-
for循环: <for start="循环起始" end="循环终止" comparison="比较条件" name="变量名(可以不定义)"> comparison的值为 eq = neq != gt > egt >= lt < elt <= heq == nhep !==查看全部
-
设置伪静态有助于搜索引擎找到该页面。查看全部
-
开启隐藏index.php: 1、apache httpd.conf 开启rewrite.so 2、index.php同级目录下建立 .htaccess查看全部
-
1、ThinkPHP中的URL模式: 在配置文件中定义URL_MODEL的值 值为1 默认模式 pathinfo模式 形式如下:http://localhost/muke/index.php/Index/user/id/1.html 值为0 普通模式 形式如下:http://localhost/muke/index.php?m=Index&a=user&id=1 值为2 重写模式 形式如下:http://localhost/muke/Index/user/id/1.html 值为3 兼容模式 形式如下:http://localhost/muke/index.php?s=/Index/user/id/1.html查看全部
-
$this->display(); 开启调试工具 define('APP_DEBUG',true); //开启调试模式查看全部
-
THINKphp for循环: <for start="循环起始" end="循环终止" comparison="比较条件" name="变量名(可以不定义)"> comparison的值为eq = neq != gt > egt >= lt < elt <= heq == nhep !==查看全部
举报
0/150
提交
取消