标签:
1.Operator
<!DOCTYPE html> <html> <body><?php $x=100; $y="100"; var_dump($x == $y); // 因为值相等,返回 true echo "<br>"; var_dump($x === $y); // 因为类型不相等,返回 false echo "<br>"; var_dump($x != $y); // 因为值相等,返回 false echo "<br>"; var_dump($x !== $y); // 因为值不相等,返回 true echo "<br>"; $a=50; $b=90; var_dump($a > $b); echo "<br>"; var_dump($a < $b); ?>
</body> </html>
output:
bool(true)
bool(false)
bool(false)
bool(true)
bool(false)
bool(true)
2.Constant
常量是单个值的标识符(名称)。在脚本中无法改变该值。
有效的常量名以字符或下划线开头(常量名称前面没有 $ 符号)。
注释:与变量不同,常量贯穿整个脚本是自动全局的。
如需设置常量,请使用 define() 函数 - 它使用三个参数:
下例创建了一个对大小写敏感的常量,值为 "Welcome to W3School.com.cn!":
<?php define("GREETING", "Welcome to W3School.com.cn!"); echo GREETING; ?>
下例创建了一个对大小写不敏感的常量,值为 "Welcome to W3School.com.cn!":
<?php define("GREETING", "Welcome to W3School.com.cn!", true); echo greeting; ?>
3.StringOperator
<?php
$a = "Hello";
$b = $a . " world!";
echo $b; // 输出 Hello world!
$x="Hello";
$x .= " world!";
echo $x; // 输出 Hello world!
?>
3. ArrayOperator
PHP 数组运算符用于比较数组:
运算符 | 名称 | 例子 | 结果 |
---|---|---|---|
+ | 联合 | $x + $y | $x 和 $y 的联合(但不覆盖重复的键) |
== | 相等 | $x == $y | 如果 $x 和 $y 拥有相同的键/值对,则返回 true。 |
=== | 全等 | $x === $y | 如果 $x 和 $y 拥有相同的键/值对,且顺序相同类型相同,则返回 true。 |
!= | 不相等 | $x != $y | 如果 $x 不等于 $y,则返回 true。 |
<> | 不相等 | $x <> $y | 如果 $x 不等于 $y,则返回 true。 |
!== | 不全等 | $x !== $y | 如果 $x 与 $y 完全不同,则返回 true。 |
标签:
原文地址:http://www.cnblogs.com/terminator-LLH/p/4932262.html