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

Enact follow-up phase of the "Path to Saner Increment/Decrement operators" RFC (#19374)

RFC: https://wiki.php.net/rfc/deprecations_php_8_5#enact_follow-up_phase_of_the_path_to_saner_incrementdecrement_operators_rfc
This commit is contained in:
Gina Peter Banyard
2025-08-23 14:36:39 +01:00
committed by GitHub
parent e27c436607
commit 93716bece4
25 changed files with 188 additions and 104 deletions

View File

@@ -28,30 +28,36 @@ float(2.2)
--- testing: '-7.7' ---
float(-6.7)
--- testing: 'abc' ---
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(3) "abd"
--- testing: '123abc' ---
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(6) "123abd"
--- testing: '123e5' ---
float(12300001)
--- testing: '123e5xyz' ---
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(8) "123e5xza"
--- testing: ' 123abc' ---
Deprecated: Increment on non-alphanumeric string is deprecated in %s on line %d
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(7) " 123abd"
--- testing: '123 abc' ---
Deprecated: Increment on non-alphanumeric string is deprecated in %s on line %d
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(7) "123 abd"
--- testing: '123abc ' ---
Deprecated: Increment on non-alphanumeric string is deprecated in %s on line %d
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(7) "123abc "
--- testing: '3.4a' ---
Deprecated: Increment on non-alphanumeric string is deprecated in %s on line %d
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(4) "3.4b"
--- testing: 'a5.9' ---
Deprecated: Increment on non-alphanumeric string is deprecated in %s on line %d
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(4) "a5.0"

View File

@@ -28,48 +28,72 @@ float(2.2)
--- testing: '-7.7' ---
float(-6.7)
--- testing: 'abc' ---
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(3) "abd"
--- testing: '123abc' ---
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(6) "123abd"
--- testing: '123e5' ---
float(12300001)
--- testing: '123e5xyz' ---
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(8) "123e5xza"
--- testing: ' 123abc' ---
Deprecated: Increment on non-alphanumeric string is deprecated in %s on line %d
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(7) " 123abd"
--- testing: '123 abc' ---
Deprecated: Increment on non-alphanumeric string is deprecated in %s on line %d
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(7) "123 abd"
--- testing: '123abc ' ---
Deprecated: Increment on non-alphanumeric string is deprecated in %s on line %d
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(7) "123abc "
--- testing: '3.4a' ---
Deprecated: Increment on non-alphanumeric string is deprecated in %s on line %d
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(4) "3.4b"
--- testing: 'a5.9' ---
Deprecated: Increment on non-alphanumeric string is deprecated in %s on line %d
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(4) "a5.0"
--- testing: 'z' ---
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(2) "aa"
--- testing: 'az' ---
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(2) "ba"
--- testing: 'zz' ---
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(3) "aaa"
--- testing: 'Z' ---
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(2) "AA"
--- testing: 'AZ' ---
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(2) "BA"
--- testing: 'ZZ' ---
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(3) "AAA"
--- testing: '9z' ---
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(3) "10a"
--- testing: '19z' ---
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(3) "20a"
--- testing: '99z' ---
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in %s on line %d
string(4) "100a"