更新数据可以用$data[''],save之前一定要写where条件。不然是不能入库的
已一个数组作为条件的for循环查询数据库:
$arr=('user_id'=>'1','user_id'=>'2','user_id'=>'3','user_id'=>'4','user_id'=>'5');
$array=aray();
for($arr as $key){
$test=M('test')->quey("select * from test where user_id={$key['user_id']}");
$array[]=$test;
}//花括号可以让双引号里面的单引号转义
html中可以用volist标签循环。,比如到我们从数据库查询出来的数据,就可以读取每一组数据中的$vo['name']这个属性
Where 条件表达式格式为:
$map['字段名'] = array('表达式', '操作条件');
其中 $map 是一个普通的数组变量,可以根据自己需求而命名。上述格式中的表达式实际是运算符的意义:
ThinkPHP运算符 与 SQL运算符 对照表TP运算符 | SQL运算符 | 例子 | 实际查询条件 |
---|---|---|---|
eq | = | $map['id'] = array('eq',100); | 等效于:$map['id'] = 100; |
neq | != | $map['id'] = array('neq',100); | id != 100 |
gt | > | $map['id'] = array('gt',100); | id > 100 |
egt | >= | $map['id'] = array('egt',100); | id >= 100 |
lt | < | $map['id'] = array('lt',100); | id < 100 |
elt | <= | $map['id'] = array('elt',100); | id <= 100 |
like | like | $map<'username'> = array('like','Admin%'); | username like 'Admin%' |
between | between and | $map['id'] = array('between','1,8'); | id BETWEEN 1 AND 8 |
not between | not between and | $map['id'] = array('not between','1,8'); | id NOT BETWEEN 1 AND 8 |
in | in | $map['id'] = array('in','1,5,8'); | id in(1,5,8) |
not in | not in | $map['id'] = array('not in','1,5,8'); | id not in(1,5,8) |
and(默认) | and | $map['id'] = array(array('gt',1),array('lt',10)); | (id > 1) AND (id < 10) |
or | or | $map['id'] = array(array('gt',3),array('lt',10), 'or'); | (id > 3) OR (id < 10) |
xor(异或) | xor | 两个输入中只有一个是true时,结果为true,否则为false,例子略。 | 1 xor 1 = 0 |
exp | 综合表达式 | $map['id'] = array('exp','in(1,3,8)'); | $map['id'] = array('in','1,3,8'); |
$map['id'] = array('not in','1,5,8'); $map['id'] = array('not in',array('1','5','8'));
上表中的 exp 不是一个运算符,而是一个综合表达式以支持更复杂的条件设置。exp 的操作条件不会被当成字符串,可以使用任何 SQL 支持的语法,包括使用函数和字段名称。
exp 不仅用于 where 条件,也可以用于数据更新,如:
$Dao = M("Article");
// 构建 save 的数据数组,文章点击数+1
$data['id'] = 10; $data['counter'] = array('exp','counter+1');
// 根据条件保存修改的数据
$User->save($data);
U方法
{:U('Home/Index/index')},跳转链接;
{:U('Home/Admin/Delete',array('id'=>$ko.id.))} thinkphp中这样使用会报错,需要将数组中的表达格式改为array('id'=>$ko['id'])
隐藏域:比如我们在后台管理文章的时候,需要修改某个文章,这时候的id需要用到两次,有可能会导致id传一次查看内容,提交的时候读取不到id的值,
我们可以把这个id在点击修改文章的时候,
放到一个隐藏的input框的value中,把该input框隐藏,提交修改的时候,读取该隐藏框的value值 官网函数参考教程:http://www.thinkphp.cn/document/309.html
生成图片缩略图
$path = $info['photo']['rootPath'].'/'.$info['photo']['savepath'].$info['photo']['savename'];//$path等于我们上传的的原图片文件
$image = new \Think\Image(); $image->open('./'.$path); // 按照原图的比例生成一个最大为150*150的缩略图并保存为thumb.jpg $name = str_shufuller(time()); $image->thumb(150, 150)->save('./'.$info['photo']['rootPath'].'/'.$info['photo']['savepath'].$name.'.jpg');
打开图路径和保存图片都需要加上./才行,否则会报错