似乎会有更短的写作方式:
if ($action == 'add' || $action == 'update' || $action == 'delete') {
// whatever
}
有吗?
答案 0 :(得分:4)
if (in_array($action, array('add', 'update', 'delete'))) {
// whatever
}
答案 1 :(得分:1)
我更喜欢这种形式,因为它更容易维护:
if(in_array($action, array('add', 'update', 'delete'))) {
}