如何缩短这个PHP语句?

时间:2015-03-26 16:20:19

标签: php

如果条件更短,请进行此操作。

if($birth_date>30&&($birth_month==2||$birth_month==4||$birth_month==6||$birth_month==9||$birth_month==11))

1 个答案:

答案 0 :(得分:1)

将出生月份的可能值放在数组中。

$birth_month_values= array(2, 4, 6, 9,11);
if($birth_date>30 && in_array($birth_month,$birth_month_values))