• 逻辑运算

    目录列表

    <?php $foo = true; $bar = false; if($foo || $bar){ echo '执行真区间'; }else{ echo '执行假区间'; } ?> 这段代码页面显示的是?

    1/1

    PHP中文网