“IF”声明不起作用吗?

时间:2012-07-23 16:59:16

标签: php if-statement boolean

当我打印出整数(1或0)时,所有迭代(在这种情况下有3个)打印出正确的数字。第一个和第二个返回1,最后一个返回零。但是,'if'语句似乎无论如何都会显示其中的所有内容。我做错了什么?

下面的所有代码都在一个更大的'for'循环中。

$yn = 0;

if(!in_array($pos, $blocks)){
    $blocks[$x] = $pos;
    $x++;
    $yn = 1;
}
print_r($blocks);

print "YN: ".$yn; # this prints out 1, 1 and 0 on the last iteration

if(yn){
        # show some stuff (is displayed in all three iterations, but it shouldn't be on the last)
}

1 个答案:

答案 0 :(得分:4)

尝试:

if($yn){

PHP将yn解释为字符串,而不是您应该使用的变量。