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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T02:30:26+00:00 2026-05-19T02:30:26+00:00

In PHP, I know we shouldn’t do math on floats without things like bcmath,

  • 0

In PHP, I know we shouldn’t do math on floats without things like bcmath, but is the mere act of casting a string to float destructive?

Will expressions like (float)'5.111' == '5.111', always be true? Or will the cast itself change that to something like 5.1110000000000199837 as the number is converted?

The main reason is, just as I use (int) to escape integer values going into a database, I would like to use (float) in the same way, without having to rely on quotes and my escape function.

  • 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-05-19T02:30:27+00:00Added an answer on May 19, 2026 at 2:30 am

    NO, Casting to a float is almost always destructive.

    In your example, 5.111 represented in binary is:

    101.00011100011010100111111011111001110110110010001011010000111001...
    

    A float would store 23 digits:

    101.0001110001101010011 
    (5.1109981536865234375)
    

    A double would store 52 digits:

    101.0001110001101010011111101111100111011011001000101
    (5.1109999999999988773424774990417063236236572265625)
    

    In this case, there wouldn’t be a difference. However, in larger numbers, it can affect what you display.

    For example:

    1025.4995

    double:

    10000000001.011111111101111100111011011001000101101
    (1025.499499999999898136593401432037353515625)
    

    float:

    10000000001.011111111101
    (1025.499267578125)
    

    You can see the precision starts to drop off dramatically after around 8 digits.

    The double would round to 1025.4995 whereas the float would be 1025.4993

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

Sidebar

Related Questions

I know I shouldn't be outputting things directly in PHP, but using a template
I know in php you can embed variables inside variables, like: <? $var1 =
I know that PHP doesn't yet have native Enumerations. But I have become accustomed
I know that this is a simple question for PHP guys but I don't
I know how to disable WSDL-cache in PHP, but what about force a re-caching
I know PHP scripts don't actually compile until they are run. However, say I
First of all, I'm not looking for miracle... I know how PHP works and
I know that it does in PHP, and I'm pretty sure it does in
Anyone know of an opensource PHP Load Testing Framework similar to the Grinder http://grinder.sourceforge.net/
I know how to do a regular php mysql search and display the results.

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.