Posted by David Haynes on 12/28/05 16:42
Oli Filth wrote:
> black francis said the following on 28/12/2005 14:37:
>> try:
>>
>> $do = ($test == 1) ? true : false;
>
> Well, that can be shortened to:
>
> $do = ($test == 1);
>
>
Which can be shortened to:
$do = $test;
unless $test = 0, $do will evaluate as false.
-david-
[Back to original message]
|