|
Posted by Steve on 11/09/07 15:36
"Rik Wasmus" <luiheidsgoeroe@hotmail.com> wrote in message
news:op.t1i5a5dq5bnjuv@metallium.lan...
On Fri, 09 Nov 2007 15:42:13 +0100, Steve <no.one@example.com> wrote:
> "joshuajnoble" <joshuajnoble@gmail.com> wrote in message
> news:1194618918.690991.128490@v23g2000prn.googlegroups.com...
>> Is there any difference between doing:
>>
>> $var & 0x80;
>
> doesn't not effect the value of $var.
>
>> and
>>
>> $var &= 0x80;
>
> assigns the result of ($var & 0x80) to $var.
>
>> I've seen the second, using the &= in production code, but on my local
>> machine it errors out. Any thoughts?
>
> what error message are you getting?
> On it's own, the error would be a notice that $var is undefined.
that's all i could figure too...so i had to ask.
Navigation:
[Reply to this message]
|