summaryrefslogtreecommitdiff
path: root/UPGRADING
diff options
context:
space:
mode:
Diffstat (limited to 'UPGRADING')
-rw-r--r--UPGRADING5
1 files changed, 5 insertions, 0 deletions
diff --git a/UPGRADING b/UPGRADING
index b3c1d19aa0..7766d4e363 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -37,6 +37,11 @@ PHP 7.2 UPGRADE NOTES
property names would become inaccessible string keys.
. Minimum supported Windows versions are Windows 7/Server 2008 R2.
+- BCMath:
+ . The bcmod() function no longer truncates fractional numbers to integers. As
+ such, its behavior now follows fmod() rather than the `%` operator. For
+ example `bcmod('4', '3.5')` now returns '0.5' instead of '1'.
+
- PCRE:
. preg_match() and other PCRE functions now distinguish between unmatched
subpatterns and empty matches by reporting NULL and "" (empty string),