php if 写法有哪些
时间:2022-02-11 13:51
php if写法有5种,分别是:1、“if {...}else {...}”;2、“if () :...else:...endif;”;3、“...? true : false;”;4、“if ()...”;5、“...&&...”。 本文操作环境:windows7系统、PHP7.1版、DELL G3电脑 php if 写法有哪些? PHP中if语句5种写法 代码如下: 推荐学习:《PHP视频教程》 以上就是php if 写法有哪些的详细内容,更多请关注gxlsystem其它相关文章!<?php
// one
if (condition) {
...
} else {
...
}
// two
if (condition) :
...
else:
...
endif;
// three
condition ? true : false ;
// four if后面紧接着判断为true所执行的代码,可分两行写,只有一个分号
if (condition) ... ;
//five 使用短路与和短路或
expression1 && expression2;
expression1 || expression2;