标签: php
有没有办法最小化/优化以下if语句:
if($user->type == 'admin' || $user->type == 'manager' || $user->type == 'operator'){ //do someting }
在这里,我真的厌倦了写$ user-> type和||一次又一次地签字。此外,在某些情况下,这种类型的逻辑会更长。