You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code below works fine on older version(PHP 8.1.13, 8.0.30, 7.4.33), but returns Fatal error: Uncaught ValueError: mb_convert_kana(): Argument #2 ($mode) must not combine 'H' and 'K' flags in PHP 8.2.26.
// for PHP 8.1.13, 8.0.30, 7.4.33
カタカナ ロマンチ 123
// for PHP 8.2.26
Fatal error: Uncaught ValueError: mb_convert_kana(): Argument #2 ($mode) must not combine 'H' and 'K' flag
But I expected this output instead:
// for PHP 8.1.13, 8.0.30, 7.4.33
カタカナ ロマンチ 123
// for PHP 8.2.26
カタカナ ロマンチ 123
Online Sandbox Result
PHP Version
PHP 8.2.26
Operating System
AlmaLinux8
The text was updated successfully, but these errors were encountered:
Description
The code below works fine on older version(PHP 8.1.13, 8.0.30, 7.4.33), but returns
Fatal error: Uncaught ValueError: mb_convert_kana(): Argument #2 ($mode) must not combine 'H' and 'K' flags
in PHP 8.2.26.The following code:
Resulted in this output:
But I expected this output instead:
Online Sandbox Result
PHP Version
PHP 8.2.26
Operating System
AlmaLinux8
The text was updated successfully, but these errors were encountered: