标签:
$a = 10; //定义一个变量$a,赋值为10
$b = 10; $B = 100; $abc = 911; $Abc = 110;
$int_num = 013;
$int_num2 = 0xa ;
主要体现在优先级上面
and 的优先级
and< = <&&
or < = < ||
配合案例:
$e = false || true;
$f = false or true;
var_dump($e, $f);
$e 是 true
$f 是 false;.....
标签:
原文地址:http://www.cnblogs.com/RzCong/p/5553371.html