To round and format the value of a variable named $number to 3 decimal places and store it in a variable named $number_formatted, you code:

To round and format the value of a variable named $number to 3 decimal places and store it in a variable named $number_formatted, you code:



Answer: $number_formatted = number_format($number, 3);


Learn More :