The code you've posted works for me;
$current_value=Array
(
1 => 0.67,
2 => 0.67,
3 => 0.67,
4 => 0.67,
5 => 0.67,
6 => 0.67,
7 => 1,
8 => 1,
9 => 1,
10 => 1,
11 => 1,
12 => 1
);
if(($current_value[7] != 1) && ($current_value[7] != 0)) {
$employees_to_report[] = array($current_key, 7);
echo "employee $current_key has the value ".$current_value[7]." for month 7<br />";
echo "<pre>";
print_r($current_value);
echo "</pre>";
}
Does it for you? If so, the problem went away when you edited the code for posting.