运行 ❯
获取您的
自有 PHP
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The === Operator</h1> <p>Compare two variables to check if they are identical.</p> <p>The identical operator (===) checks the value and the data type, unlike the equal operator (==) that checks only the value.</p> <?php $x = 100; $y = 100; if ($x === $y) { echo "$x is identical to $y"; } ?> </body> </html>
=== 运算符
比较两个变量以检查它们是否完全相同。
与仅检查值的等号运算符 (==) 不同,恒等运算符 (===) 检查值和数据类型。
100 与 100 相同