-
Notifications
You must be signed in to change notification settings - Fork 8k
Fixed GH-16236: Fixed a bug in BcMath\Number::pow()
and bcpow()
when raising negative powers of 0
.
#16694
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
Closed
Closed
Fixed GH-16236: Fixed a bug in BcMath\Number::pow()
and bcpow()
when raising negative powers of 0
.
#16694
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
c048993
Fixed a bug in BcMath\Number::pow() when raising negative powers of 0.
SakiTakamachi 62878da
Fixed the behavior of the bcpow() function to be the same as the Numb…
SakiTakamachi 4cfc788
Fixed variable name
SakiTakamachi 2e44b1f
Added try-catch to run_bcmath_tests_function.inc
SakiTakamachi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--TEST-- | ||
bcpow() negative power of zero | ||
--EXTENSIONS-- | ||
bcmath | ||
--INI-- | ||
bcmath.scale=0 | ||
--FILE-- | ||
<?php | ||
$exponents = ["-15", "-1", "-9"]; | ||
$baseNumbers = ['0', '-0']; | ||
|
||
foreach ($baseNumbers as $baseNumber) { | ||
foreach ($exponents as $exponent) { | ||
try { | ||
echo bcpow($baseNumber, $exponent), "\n"; | ||
} catch (Error $e) { | ||
echo $e->getMessage(), "\n"; | ||
} | ||
} | ||
} | ||
|
||
?> | ||
--EXPECT-- | ||
Negative power of zero | ||
Negative power of zero | ||
Negative power of zero | ||
Negative power of zero | ||
Negative power of zero | ||
Negative power of zero |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--TEST-- | ||
BcMath\Number pow(): negative power of zero | ||
--EXTENSIONS-- | ||
bcmath | ||
--FILE-- | ||
<?php | ||
|
||
$values = [0, '0']; | ||
|
||
$exponents = [ | ||
[-3, 'int'], | ||
['-2', 'string'], | ||
[new BcMath\Number('-2'), 'object'], | ||
]; | ||
|
||
foreach ($values as $value) { | ||
$num = new BcMath\Number($value); | ||
|
||
foreach ($exponents as [$exponent, $type]) { | ||
echo "{$value} ** {$exponent}: {$type}\n"; | ||
try { | ||
$num->pow($exponent); | ||
} catch (Error $e) { | ||
echo $e->getMessage() . "\n"; | ||
} | ||
} | ||
} | ||
?> | ||
--EXPECT-- | ||
0 ** -3: int | ||
Negative power of zero | ||
0 ** -2: string | ||
Negative power of zero | ||
0 ** -2: object | ||
Negative power of zero | ||
0 ** -3: int | ||
Negative power of zero | ||
0 ** -2: string | ||
Negative power of zero | ||
0 ** -2: object | ||
Negative power of zero |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--TEST-- | ||
BcMath\Number pow: negative power of zero by operator | ||
--EXTENSIONS-- | ||
bcmath | ||
--FILE-- | ||
<?php | ||
|
||
$values = [0, '0']; | ||
|
||
$exponents = [ | ||
[-3, 'int'], | ||
['-2', 'string'], | ||
[new BcMath\Number('-2'), 'object'], | ||
]; | ||
|
||
foreach ($values as $value) { | ||
$num = new BcMath\Number($value); | ||
|
||
foreach ($exponents as [$exponent, $type]) { | ||
echo "{$value} ** {$exponent}: {$type}\n"; | ||
try { | ||
$num ** $exponent; | ||
} catch (Error $e) { | ||
echo $e->getMessage() . "\n"; | ||
} | ||
} | ||
} | ||
?> | ||
--EXPECT-- | ||
0 ** -3: int | ||
Negative power of zero | ||
0 ** -2: string | ||
Negative power of zero | ||
0 ** -2: object | ||
Negative power of zero | ||
0 ** -3: int | ||
Negative power of zero | ||
0 ** -2: string | ||
Negative power of zero | ||
0 ** -2: object | ||
Negative power of zero |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's better to not copy&paste the code. Instead, modify
run_bcmath_tests_function.inc
to catch exceptions,and if there is one, just print the exception message instead of the result. This will reduce code duplication and would still test these cases. It also generalises nicer.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, fixed it in 2e44b1f