你还在这样写函数返回比较吗?
$ret = check();
if($ret){
}else{
}
function check(){
if(xxx){return true;}else{return false;}
}
今天发现php中有一种简单写法
if($ret=check()){
}else{
}
function check(){
if(xxx){return true;}else{return false;}
}
立马清爽了许多是不是?吼吼~~
你还在这样写函数返回比较吗?
$ret = check();
if($ret){
}else{
}
function check(){
if(xxx){return true;}else{return false;}
}
今天发现php中有一种简单写法
if($ret=check()){
}else{
}
function check(){
if(xxx){return true;}else{return false;}
}
立马清爽了许多是不是?吼吼~~
本文标题:php中赋值判断的NX写法
本文链接:https://www.haomeiwen.com/subject/ugtbcktx.html
网友评论