只是好奇是否有办法在If
开关中做到这一点
$account = array (
'{unkown value}' =>
array (
'accountID' => '4430290',
'accountStatus' => '1',
'parentAccountID' => '',
'offerID' => '746',
'billingModel' => '2.0',
),
);
if(array_pop($account)['billingModel'] == 'SomeValue') {
// do stuff
}
我目前正在这样做,但认为可能有更好的方法
$model = array_pop($accountInfo);
if ($model['billingModel'] == 'someValue') return false;