php 同时使用and or怎么写
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 同时使用and or怎么写相关的知识,希望对你有一定的参考价值。
例如下面的程序,我想实现输出BBB,但是一直是AAA
$a=1;
$b=2;
$c=3;
if(($a=2) or ($d="1" and $e="2" and $b==5))
echo "AAA";
else
echo "BBB";
if($a==2 || ($d==1 && $e==2 && b==5))
echo "AAA";
else
echo "BBB";
?> 参考技术A 这里 $a = 2 是赋值的意思 , 永远为真。 注意 = 和 == 的区别本回答被提问者采纳
php mongo条件有and和or时应该怎样写
比如MySQL中的条件为where a=1 and (b=2 or c=2);mongo中的find条件应该怎样写呢?
本人刚接触mongo不久,所以希望各位大大帮下忙,谢谢了!
find方法
db.collection_name.find();
查询所有的结果:
select * from users;
db.users.find();
指定返回那些列(键):
select name, skills from users;
db.users.find(, 'name' : 1, 'skills' : 1);
补充说明: 第一个 放where条件 第二个 指定那些列显示和不显示 (0表示不显示 1表示显示)
where条件:
1.简单的等于:
select name, age, skills from users where name = 'hurry';
db.users.find('name' : 'hurry','name' : 1, 'age' : 1, 'skills' : 1);
2.使用and
select name, age, skills from users where name = 'hurry' and age = 18;
db.users.find('name' : 'hurry', 'age' : 18,'name' : 1, 'age' : 1, 'skills' : 1);
3.使用or
select name, age, skills from users where name = 'hurry' or age = 18;
db.users.find( '$or' : ['name' : 'hurry', 'age' : 18] ,'name' : 1, 'age' : 1, 'skills' : 1);
4.<, <=, >, >= ($lt, $lte, $gt, $gte )
select * from users where age >= 20 and age <= 30;
db.users.find('age' : '$gte' : 20, '$lte' : 30);
5.使用in, not in ($in, $nin)
select * from users where age in (10, 22, 26);
db.users.find('age' : '$in' : [10, 22, 26]);
6.匹配null
select * from users where age is null;
db.users.find('age' : null);
7.like (mongoDB 支持正则表达式)
select * from users where name like "%hurry%";
db.users.find(name:/hurry/);
select * from users where name like "hurry%";
db.users.find(name:/^hurry/);
8.使用distinct
select distinct (name) from users;
db.users.distinct('name');
9.使用count
select count(*) from users;
db.users.count();
10.数组查询 (mongoDB自己特有的)
如果skills是 ['java','python']
db.users.find('skills' : 'java'); 该语句可以匹配成功
$all
db.users.find('skills' : '$all' : ['java','python']) skills中必须同时包含java 和 python
$size
db.users.find('skills' : '$size' : 2) 遗憾的是$size不能与$lt等组合使用
$slice
db.users.find('skills' : '$slice : [1,1])
两个参数分别是偏移量和返回的数量
11.查询内嵌文档
12.强大的$where查询
db.foo.find();
"_id" : ObjectId("4e17ce0ac39f1afe0ba78ce4"), "a" : 1, "b" : 3, "c" : 10
"_id" : ObjectId("4e17ce13c39f1afe0ba78ce5"), "a" : 1, "b" : 6, "c" : 6
如果要查询 b = c 的文档怎么办?
> db.foo.find("$where":function()
for(var current in this)
for(var other in this)
if(current != other && this[current] == this[other])
return true;
return false;
);
"_id" : ObjectId("4e17ce13c39f1afe0ba78ce5"), "a" : 1, "b" : 6, "c" : 6 参考技术A $criteria=array(
"a"=>1,//两个条件间用逗号连接就是and,注意'$and'是boolean操作时用的
array(
'$or'=>array(//若要用Or则需要用'$or'操作符
"b"=>2,
"c"=>2
)
)
);
$res=$coll->find($criteria);//$coll是你的collection连接追问
这样不行喔,报错:invalid operator: $or
本回答被提问者和网友采纳 参考技术B //查找$cursor = $collection->find();
var_dump($cursor);
//查找一条
$user = $collection->findOne(array('name' => 'caleng'), array('email'));
var_dump($user);
以上是关于php 同时使用and or怎么写的主要内容,如果未能解决你的问题,请参考以下文章
在 if/else PHP 语句中使用 'and' 和 'or'