Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrong scale for BcMath\Number::div result with big numbers #17696

Closed
Sandritsch91 opened this issue Feb 4, 2025 · 3 comments
Closed

Wrong scale for BcMath\Number::div result with big numbers #17696

Sandritsch91 opened this issue Feb 4, 2025 · 3 comments

Comments

@Sandritsch91
Copy link

Description

The following code:

<?php
// $n1 > 10^10 results in wrong scale
$n1 = new \BcMath\Number('100000000000');
$n2 = new \BcMath\Number('1');
echo $n2->div($n1);

Resulted in this output:

0

But I expected this output instead:

0.00000000001

3v4l.org

PHP Version

PHP 8.4.3

Operating System

Windows 11 Pro 24H2, Linux

@cmb69
Copy link
Member

cmb69 commented Feb 4, 2025

For the given script above, I would say that this is a deliberate design decision (see https://wiki.php.net/rfc/support_object_type_in_bcmath for details). You either need to specify the scale explicitly when calling the method, or rely on the larger scale of either Number; see e.g. https://3v4l.org/pIiCN#v8.4.3.

However, the third output contradicts that. Something doesn't look quite right here.

@SakiTakamachi
Copy link
Member

@Sandritsch91
This is the intended behavior.

If do not explicitly specify a scale for div(), or if use an operator, the scale of the result is expanded to the scale of the dividend + 10 (max).

In the example code, even if expand to the maximum, the result is 0, so no expansion takes place.

In the second example of code in your URL, if expand the scale to its maximum, the last digit will be a 1, which gives you 0.0000000001.

If the dividend was 1.0 instead of 1, expanding the scale to the maximum would result in a result scale of 11, so your first example would become:

https://3v4l.org/NrXYa#v8.4.3

@cmb69
Perhaps you misread a zero? The third output looks correct.

@cmb69
Copy link
Member

cmb69 commented Feb 6, 2025

Ah, I've missed

However, in cases such as indivisible division, the BcMath\Number::scale of the result is expanded. Expansion is done only as needed, up to a maximum of +10.

So indeed, not a bug.

@cmb69 cmb69 closed this as not planned Won't fix, can't repro, duplicate, stale Feb 6, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants