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 8970375
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T17:43:11+00:00 2026-06-15T17:43:11+00:00

I am trying to establish the delta I need when doing float comparison in

  • 0

I am trying to establish the delta I need when doing float comparison in PHP. I want to take a closer look at my variables to see the difference.

I have 2 computed variables, $a, $b.

$a = some_function();

$b = some_other_function();

How can I see the exact number which PHP uses?

I want to compare them with this formula, where I need to specify the delta:

$delta = 0.00001;
if (abs($a-$b) < $delta) {
  echo "identical";
}

var_dump($a, $b) returns 1.6215; 1.6215. but I know that they are not exactly equal because

var_dump($a === $b);

evaluates to false;

Why doesn’t var_dump() print the internal value?

  • 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-15T17:43:12+00:00Added an answer on June 15, 2026 at 5:43 pm

    In PHP, the printed values of floating point numbers are dependent on PHP configuration “precision”.

    You can change that with:

    ini_set('precision', YOUR_DESIRED_PRECISION_AS_INTEGER);
    

    For example with with:

    ini_set('precision', 18);
    

    Your numbers may display something like:

    float 1.62149999999999994

    float 1.6214999999999995

    So now the difference between them is clearer.

    So your delta may be: $delta = 0.00000000000001; It really depends of the precision you are looking for.

    If you need to do exact mathematical calculations, do have a look at the BC Math Functions.


    References / Sources

    PHP – Floating point numbers

    PHP – Floating point numbers – User Contributed Notes – deminy at deminy dot net

    Codepad

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to establish an abstract class. I want to ensure that any
I am trying to establish equality of three equal variables, but the following code
I am trying to establish a connection with a PHP script of mine in
i'm trying to establish an FTP connection within an app. i want to upload
I'm trying to establish an interactive SSH connection to a remote server using PHP
I'm trying to establish a PHP (5.2.6)/MySQL connection via mysqli. error_log( sprintf( 'Querying %s:%s
Just trying to establish whether prototype can do something like $$('#ID a:last').css('color','#111'); Any ideas
im trying to establish and access a session from my servlet, but I can't
I'm trying to establish a second database connection to another database on another server.
I'm trying to establish workflows for creating new projects and for setting old projects

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.