3v4l.org

run code in 300+ PHP versions simultaneously
<?php $foo = null; // If's - verbose and uneccassry if (! $foo) { $foo = 'default'; } // Short Ternary syntax $foo ?: 'default'; // Long Operator syntax $foo || $foo = 'default'; // Proposed Short Operator syntax $foo =|| "default";
Output for 5.4.0 - 5.4.22
Parse error: syntax error, unexpected '||' (T_BOOLEAN_OR) in /in/ehjLS on line 17
Process exited with code 255.
Output for 5.3.0 - 5.3.27
Parse error: syntax error, unexpected T_BOOLEAN_OR in /in/ehjLS on line 17
Process exited with code 255.

preferences:
201.68 ms | 1399 KiB | 58 Q