<!DOCTYPE html>
<html>
<body>
<h1>! 运算符</h1>
<p>如果条件不为真,则输出一条消息。</p>
<?php
$x = 100;
if (!($x == 90)) {
echo "Hello world!";
}
?>
</body>
</html>