Jump to content

1 Decimal Place Without Rounding


andy75180

Recommended Posts

Hi ya,

 

If I have a float number of say 3.478399 How can I reduce the number to 1 decimal place without rounding?

 

I've tried it will sprintf, but it rounds the 4 to a 5 which I want to avoid.

 

$float_number = 3.478399;
$new_float_number = sprintf ("%0.1f",$float_number);

 

 

Output returns  3.5 when really I need it to be 3.4

 

Any help anyone?

 

 

Link to comment
https://forums.phpfreaks.com/topic/68364-1-decimal-place-without-rounding/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.