PHP合并变量

时间:2010-07-29 16:13:46

标签: php merge

如何合并这些(缩短此代码)?

$match_1 = false;
$match_2 = false;
$match_3 = false;
$match_4 = false;
$match_5 = false;

以及如何缩短此代码:

if($match_1 == false) { ... } // if(!$match) must work?

2 个答案:

答案 0 :(得分:2)

$match_1 = $match_2 = $match_3 = $match_4 = $match_5 = false; 

虽然使用数组可能会更好

$match = array_fill(1,5,false);

答案 1 :(得分:1)

您可以使用数组:

$match = array(false, false, ...);

您不知道自己想要什么,但可以检查是否有falsetrue元素:

if (in_array(true/false, $match, true)) { ... }