Posted by Oli Filth on 09/29/05 02:06
Evert said the following on 28/09/2005 23:14:
> chris wrote:
>
>> I was looking through some PHP code and saw the below line of code and
>> was wondering what it did -
>>
>> $w = ($tmp[0]>$maxw) ? $maxw : $tmp[0];
>>
>> can someone explain what it would do ??
>>
>>
>>
>
> if ($tmp[0]>$maxw) {
> $w = $maxw;
> } else {
> $w = $tmp[0];
> }
>
> RTFM?
>
Not easy to RTFM if you don't know what it's called...
--
Oli
Navigation:
[Reply to this message]
|