Jump to content

Calculation inconsistency


JudgementDay

Recommended Posts

works for me, too. Are you using variables in your code? Maybe they are not what you think they are.

 

You were spot on! I was using variables and one was not what I thought. Thanks for reminding me.

I had only been out of bed for 10 minutes, so the brain wasn't functioning properly. lol

 

Well, now I actually do have a problem:

 

echo number_format(150 + 20.95 * 1.01 + .5, 2);

... gives me 173.16

 

My calculator gives me: 171.65

 

Have I done something wrong with PHP?

Link to comment
Share on other sites

Well, I just ate breakfast and things are allot clearer.

 

I failed at translating my PHP code to general maths for you guys.

 

I should have actually said:

echo number_format((150 + 20.95) * 1.01 + .5, 2);

 

I removed the inner brackets and now things work fine. I cannot understand why that made a different?

 

BTW, I saw you have a PHP CLI thing. So cool! I will get this today! :D

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.