|
Posted by Janwillem Borleffs on 09/28/40 11:49
J.O. Aho wrote:
> You can negate the the result of the "$IP_array as $IP_test" with the
> !
> foreach (!($IP_array as $IP_test)) {
>
I don't think you can:
$a = array(1,2,3);
foreach (!($a as $num)) {
print $num;
}
Result:
Parse error: parse error, unexpected T_AS in [...] on line [...]
JW
Navigation:
[Reply to this message]
|