$base = 20; $height = 10; $area = $base * $height; 我用来将base与height相乘的* ,就是乘法运算。 我们有相当多的运算符,让我们对主要的运算符做一个简单的总结。 首先,这里是算术运
$base = 20;
$height = 10;
$area = $base * $height;
我用来将base与height相乘的*
,就是乘法运算。
我们有相当多的运算符,让我们对主要的运算符做一个简单的总结。
首先,这里是算术运算符。+
,-
,*
,/
(除法),%
(余数)和**
(指数)。
我们有赋值运算符=
,我们已经用它来给一个变量赋值了。
接下来我们有比较运算符,如<
,>
,<=
,>=
。这些运算符的工作原理与数学中的一样:
2 < 1; //false
1 <= 1; // true
1 <= 2; // true
逻辑运算符对布尔值起作用
// Logical AND with && or "and"
true && true; //true
true && false; //false
false && true; //false
false && false; //false
true and true; //true
true and false; //false
false and true; //false
false and false; //false
// Logical OR with || or "or"
true || true; // true
true || false //true
false || true //true
false || false //false
true or true; // true
true or false //true
false or true //true
false or false //false
// Logical XOR (one of the two is true, but not both)
true xor true; // false
true xor false //true
false xor true //true
false xor false //false
not运算符:
$test = true
!$test //false
我在这里使用了布尔值true
和false
,但在实践中,你会使用评估为真或假的表达式,比如说:
1 > 2 || 2 > 1; //true
1 !== 2 && 2 > 2; //false
$age = 20;
$age++;
//age is now 21
$age--;
//age is now 20
以上就是PHP中的运算符使用示例详细指南的详细内容,更多关于php中运算符的资料请关注在学网其它相关文章!
来源地址:https://blog.csdn.net/heiyefengdi/article/details/131760925
--结束END--
本文标题: php运算符的基本使用
本文链接: https://lsjlt.com/news/440161.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0