主页
PHP
PHP 运算符
tryphp_oper_not
运行 ❯
×
更改方向
保存代码
更改主题
The ! Operator
Write a message if the condition is NOT true.
<?php $x = 100; if (!($x == 90)) { echo "Hello world!"; } ?>
The ! Operator
Write a message if the condition is NOT true.
Hello world!