运行 ❯
获取您自己的
PHP
服务器
×
更改方向
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The !== Operator</h1> <p>Compare two variables and write a message if they are NOT identical.</p> <p>The not identical operator (!==) checks the value and the data type, unlike the not equal operator (!=) that checks only the value.</p> <?php $x = 100; $y = 50; if ($x !== $y) { echo "$x is not identical to $y"; } ?> </body> </html>
!== 运算符
比较两个变量,如果它们不完全相同则写一条消息。
不完全等于运算符 (!==) 检查值和数据类型,与不等于运算符 (!=) 不同,后者只检查值。
100 不完全等于 50