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

  • SEARCH
  • Home
  • 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 7878189
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T03:35:25+00:00 2026-06-03T03:35:25+00:00

How do I round larger numbers in php. NOTE: I have aready tried the

  • 0

How do I round larger numbers in php.

NOTE: I have aready tried the round function and can not seem to get it to work as i need

for example:

Say i have 4 listing in a database and they have 4 different prices.

    1st Price = 5,783

    2nd Price = 19,647

    3rd Price = 12,867

    4th Price = 23,647

Now we determin that the lowest price in the databae would be 5,783

and the highest price is 23,647.

now what i want to do is round down the lowest price to say the nearest 500 or 1000 or even 5000

example of nearset 1000

lowest price 5,783 rounded down = 5000

highest price 23,647 rounded up = 24000

  • 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-03T03:35:26+00:00Added an answer on June 3, 2026 at 3:35 am

    You can use this function:

    function nearest($num, $divisor) {
      $diff = $num % $divisor;
      if ($diff == 0)
        return $num;
      elseif ($diff >= ceil($divisor / 2))
        return $num - $diff + $divisor;
      else
        return $num - $diff;
    }
    

    Call it like this:

    nearest(23647, 5000);
    

    Similar functions, but when you want to decide for yourself in which direction to round:

    function roundUp($num, $divisor) {
      $diff = $num % $divisor;
      if ($diff == 0)
        return $num;
      else
        return $num - $diff + $divisor;
    }
    
    
    function roundDown($num, $divisor) {
      $diff = $num % $divisor;
      return $num - $diff;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can we round off a number to the nearest 10 in php? Say
This one goes round and round I know but I can't seem to find
Going round in circles here i think. I have an activity called Locate; public
I want to round numbers up to their nearest order of magnitude. (I think
I need a round corner on my website. I'm fairly inexperienced with jQuery and
I'm going round in circles at the moment trying to get the pattern right
How would I round the result from two divided numbers, e.g. 3/2 As when
PHP converts a large number to floating point which I need in long format
I need to do calculations (division or multiplication) with very large numbers. Currently I
I have a 64-bit long that I want to round down to the nearest

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.