1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

ext/mbstring: Fix deprecation warning (#21363)

This fixes the PHP deprecation warning:

    PHP Deprecated:  Implicit conversion from float 2048.96875 to int
    loses precision in .../ext/mbstring/gen_rare_cp_bitvec.php on line 9
This commit is contained in:
Peter Kokot
2026-03-07 16:16:59 +01:00
committed by GitHub
parent f830fa9948
commit 58acc671db

View File

@@ -6,7 +6,7 @@ if ($argc < 2) {
return;
}
$bitvec = array_fill(0, (0xFFFF / 32) + 1, 0xFFFFFFFF);
$bitvec = array_fill(0, intdiv(0xFFFF, 32) + 1, 0xFFFFFFFF);
$input = file_get_contents($argv[1]);
foreach (explode("\n", $input) as $line) {