Home > Backend Development > PHP Tutorial > How to Format a Number to Two Decimal Places in PHP?

How to Format a Number to Two Decimal Places in PHP?

DDD
Release: 2024-12-19 10:04:09
Original
183 people have browsed it

How to Format a Number to Two Decimal Places in PHP?

How to Display a Number with Two Decimal Places in PHP

In PHP, displaying a number with two decimal places can be achieved using the appropriate formatting functions.

To round a string representing a number to two decimal places, consider the following code snippet:

$number = "520"; // Assumed to be a string from a database

$formatted_number = round_to_2dp($number);

echo $formatted_number;
Copy after login

The objective is to define the round_to_2dp() function to perform the necessary rounding.

Function Definition for round_to_2dp():

One approach to achieve this is by employing the number_format() function:

function round_to_2dp($number) {
  return number_format((float)$number, 2, '.', '');
}
Copy after login

In this implementation:

  • The number is first cast to a float to ensure accurate calculations.
  • number_format is utilized with the following parameters:

    • $number: The number to be formatted.
    • 2: Specifies two decimal places.
    • . and '': Denote the decimal separator and thousands separator (which is empty in this case).
  • The function returns a string representing the rounded number.

The above is the detailed content of How to Format a Number to Two Decimal Places in PHP?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template