3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a = "α"; var_dump( ++$a); $b = "a"; var_dump(++$b);
Output for 8.5.0 - 8.5.3
Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in /in/k0Nti on line 4 string(2) "α" Deprecated: Increment on non-numeric string is deprecated, use str_increment() instead in /in/k0Nti on line 6 string(1) "b"
Output for 8.3.0 - 8.3.30, 8.4.1 - 8.4.18
Deprecated: Increment on non-alphanumeric string is deprecated in /in/k0Nti on line 4 string(2) "α" string(1) "b"
Output for 8.0.1 - 8.0.30, 8.1.0 - 8.1.34, 8.2.0 - 8.2.30
string(2) "α" string(1) "b"

preferences:
82.03 ms | 1112 KiB | 4 Q