在三元运算中(expr1)?(expr2):(expr3);
and,or,xor的优先级要小于三元运算符,所以需要添加括号例:如果$a为true,$b为fals,$a and $b?"true":"false";输出的结果为1,($a and $b)?"true":"false";输出的结果为false;
&&,|| 运算的时候无需添加括号;
在三元运算中(expr1)?(expr2):(expr3);
and,or,xor的优先级要小于三元运算符,所以需要添加括号例:如果$a为true,$b为fals,$a and $b?"true":"false";输出的结果为1,($a and $b)?"true":"false";输出的结果为false;
&&,|| 运算的时候无需添加括号;