Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8083609
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T17:31:37+00:00 2026-06-05T17:31:37+00:00

Is there a way with PHP to show 2 (or x) decimal places, but

  • 0

Is there a way with PHP to show 2 (or x) decimal places, but not show the .00 if whole number?

I’ve looked at number_format, but it doesn’t look like it accommodates this exactly.. though I would like the commas every 3 non-decimal places

34.00  => 34
34.7   => 34.70
12424.9=> 12,424.90

My numbers are stored as floats w/ 2 decimal places in the database so I don’t necessarily need that

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T17:31:39+00:00Added an answer on June 5, 2026 at 5:31 pm

    What you could do is check if it’s a whole number first, by rounding it using floor() and checking whether that’s equal to the full decimal version.

    echo (floor($cost) == $cost) ? floor($cost) : number_format($cost, 2, '.', ',');
    

    or

    if (floor($cost) == $cost) {
        echo floor($cost);
    }
    else {
        echo number_format($cost, 2, '.', ',');
    }
    

    Another option is to use money_format():

    echo (floor($cost) == $cost) ? floor($cost) : money_format('%.2n', $cost);
    

    or

    if (floor($cost) == $cost) {
        echo floor($cost);
    }
    else {
        echo money_format('%.2n', $cost);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way to show a progress bar in php? I like to
Is there an easy-ish way to modify the webform-form-tpl.php template to show disclaimer text
Is there a way to run PHP 5.3 next PHP 5.4? I'd like it
Is there a way to get PHP-like print_r(object) funcionality in iPython? I know I
Is there any way to show an image without its path. I mean not
Is there any way to show the current PHP function or class name in
In PHP/MySQL, is there a way to show how many requests are being performed
Is there a way to let php error messages show up in a facebook
Is there a way in PHP 5.3 to get crypt() blowfish (salt starting with
Is there a way in php to count how often a value exists in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.