Jump to content

Limiting a variable to only 2 decimals (.XX)??


suess0r

Recommended Posts

http://us.php.net/manual/en/function.number-format.php

 

number_format($number, $decimals)

 

Example:

<?php
echo number_format(1.33333333333333333, 2);
//returns 1.33
?>

 

There are more parameters, read the documentation to view what else you can do.

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.