Posted by Sander Peters on 11/11/71 11:30
"Justin Koivisto" <justin@koivi.com> schreef in bericht
news:aOOdnbMi-5XIF8LeRVn-iQ@onvoy.com...
> Sander Peters wrote:
>> Hi,
>>
>> I have the following situation:
>>
>> $a=5.6000;
>> $b=8.9000;
>> $c=($a+$b);
>>
>> echo $c;
>>
>> I will get the value '14.5' back from PHP.
>> Wich is logical.
>> But what I want is to get the value '14.5000'.
>> Is there somehow a workaround to let PHP print 4 decimals?
>>
>> Thanks in advance for your reaktion.
>>
>> Sander Peters
>> The Netherlands
>
> printf('%.4f',$c)
>
> --
> Justin Koivisto, ZCE - justin@koivi.com
> http://koivi.com
Thanks a lot!
Navigation:
[Reply to this message]
|