3v4l.org

run code in 500+ PHP versions simultaneously
<?php $stuff = (string) $things ?? 'nothing'; var_dump( $stuff ); echo "\n---\n"; $stuff = (string) ( $things ?? 'nothing' ); var_dump( $stuff );
Output for 8.2.31 - 8.2.33, 8.3.0 - 8.3.33, 8.4.1 - 8.4.25, 8.5.0 - 8.5.10
Warning: Undefined variable $things in /in/mInAG on line 3 string(0) "" --- string(7) "nothing"

preferences:
43.92 ms | 793 KiB | 4 Q