测试结果 : condition1 condtion2同时成立的时候执行doSomething 但是 doSomething 不可以写成匿名函数
<?php
$res =['key1'=>'','key2'=>''];
!$res['key1'] && !$res['key2'] && test();
function test(){
echo 'This is a test';
}
测试结果 : condition1 condtion2同时成立的时候执行doSomething 但是 doSomething 不可以写成匿名函数
<?php
$res =['key1'=>'','key2'=>''];
!$res['key1'] && !$res['key2'] && test();
function test(){
echo 'This is a test';
}