Fix #20475: Fix Formatter class asScientific() method for PHP 8.5 sprintf precision change (6 to 0)

This commit is contained in:
Wilmer Arambula
2025-08-12 00:51:01 -04:00
committed by GitHub
parent 7c96143d16
commit 36d67cd6a6
3 changed files with 11 additions and 4 deletions

View File

@ -21,7 +21,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
php: [7.3, 7.4, 8.0, 8.1, 8.2, 8.3, 8.4] php: [7.3, 7.4, 8.0, 8.1, 8.2, 8.3, 8.4, 8.5]
steps: steps:
- name: Generate french locale. - name: Generate french locale.
@ -46,7 +46,7 @@ jobs:
run: composer self-update run: composer self-update
- name: Install dependencies with composer. - name: Install dependencies with composer.
run: composer update $DEFAULT_COMPOSER_FLAGS run: composer update $DEFAULT_COMPOSER_FLAGS ${{ matrix.php == 8.5 && '--ignore-platform-reqs' || '' }}
- name: Run tests with PHPUnit. - name: Run tests with PHPUnit.
run: vendor/bin/phpunit ${{ env.PHPUNIT_COMMAND }} run: vendor/bin/phpunit ${{ env.PHPUNIT_COMMAND }}

View File

@ -12,7 +12,7 @@ Yii Framework 2 Change Log
- Bug #20453: Fix PHPStan/Psalm types in `yii\web\View` (max-s-lab) - Bug #20453: Fix PHPStan/Psalm types in `yii\web\View` (max-s-lab)
- Enh #20461: Add PHPStan/Psalm annotations for `yii\filters\auth\AuthInterface` (max-s-lab) - Enh #20461: Add PHPStan/Psalm annotations for `yii\filters\auth\AuthInterface` (max-s-lab)
- Bug #20459: Fix return type in `RequestParserInterface::parse` (max-s-lab) - Bug #20459: Fix return type in `RequestParserInterface::parse` (max-s-lab)
- Bug #20475: Fix `Formatter` class `asScientific()` method for PHP `8.5` `sprintf` precision change (`6` to `0`) (terabytesoftw)
2.0.53 June 27, 2025 2.0.53 June 27, 2025
-------------------- --------------------

View File

@ -1261,10 +1261,12 @@ class Formatter extends Component
if ($value === null) { if ($value === null) {
return $this->nullDisplay; return $this->nullDisplay;
} }
$value = $this->normalizeNumericValue($value); $value = $this->normalizeNumericValue($value);
if ($this->_intlLoaded) { if ($this->_intlLoaded) {
$f = $this->createNumberFormatter(NumberFormatter::SCIENTIFIC, $decimals, $options, $textOptions); $f = $this->createNumberFormatter(NumberFormatter::SCIENTIFIC, $decimals, $options, $textOptions);
if (($result = $f->format($value)) === false) { if (($result = $f->format($value)) === false) {
throw new InvalidArgumentException('Formatting scientific number value failed: ' . $f->getErrorCode() . ' ' . $f->getErrorMessage()); throw new InvalidArgumentException('Formatting scientific number value failed: ' . $f->getErrorCode() . ' ' . $f->getErrorMessage());
} }
@ -1276,7 +1278,12 @@ class Formatter extends Component
return sprintf("%.{$decimals}E", $value); return sprintf("%.{$decimals}E", $value);
} }
return sprintf('%.E', $value); // PHP 8.5+ changed sprintf('%.E') behavior: empty precision now defaults to '0' instead of '6'
// Specify explicit precision to maintain backward compatibility
// @link https://github.com/php/php-src/commit/5ed8b2be5533fbd4db95d9724d268eb9c9741f14
$format = PHP_VERSION_ID >= 80500 ? '%.6E' : '%.E';
return sprintf($format, $value);
} }
/** /**