php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #78556 bcmul
Submitted: 2019-09-18 07:29 UTC Modified: 2019-09-18 07:32 UTC
From: shinzan69 at gmail dot com Assigned: cmb (profile)
Status: Not a bug Package: BC math related
PHP Version: 7.2.22 OS: CentOS Linux release 7.6.1810 (C
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: shinzan69 at gmail dot com
New email:
PHP Version: OS:

 

 [2019-09-18 07:29 UTC] shinzan69 at gmail dot com
Description:
------------
---
From manual page: https://php.net/function.bcmul
---

echo bcmul(10000000, 0.00001, 5);
=> 0



I expect "100". But return 0

Test script:
---------------
echo bcmul(10000000, 0.00001, 5);


Expected result:
----------------
100

Actual result:
--------------
0

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2019-09-18 07:32 UTC] cmb@php.net
-Status: Open +Status: Not a bug -Assigned To: +Assigned To: cmb
 [2019-09-18 07:32 UTC] cmb@php.net
Floating point values have a limited precision. Hence a value might
not have the same string representation after any processing. That also
includes writing a floating point value in your script and directly
printing it without any mathematical operations.

If you would like to know more about "floats" and what IEEE
754 is, read this:
http://www.floating-point-gui.de/

Use strings for BCMath functions, e.g. <https://3v4l.org/2A2l3>.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Dec 22 11:01:30 2024 UTC