主页
PHP
PHP if 运算符
tryphp_if_first3
运行 ❯
×
更改方向
保存代码
更改主题
<?php $a = 200; $b = 33; $c = 500; if ($a > $b && $a < $c ) { echo "Both conditions are true"; } ?>
Both conditions are true