在Javascript中,我们可以通过以下代码做到这一点:
function test(a) {
a && (console.log("somthing"), executeOtherFunction());
}
上面的代码是以下代码的简写:
function test(a){
if(a){
console.log("something");
executeOtherFunction()
}
}
有可能让它适用于 PHP 吗?
我不是说console.log
在 PHP 中使用,只是想在 PHP 中使用相同的东西。