3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Lock { public function __construct() { echo "lock" . PHPEOL; } public function __destruct() { echo "unlock" . PHPEOL; } } new Lock(); $nullObject = null; try { $nullObject->undefined(); } catch(Exception $e) { }
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught Error: Undefined constant "PHPEOL" in /in/HsSh9:7 Stack trace: #0 /in/HsSh9(16): Lock->__construct() #1 {main} thrown in /in/HsSh9 on line 7
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
Warning: Use of undefined constant PHPEOL - assumed 'PHPEOL' (this will throw an Error in a future version of PHP) in /in/HsSh9 on line 7 lockPHPEOL Warning: Use of undefined constant PHPEOL - assumed 'PHPEOL' (this will throw an Error in a future version of PHP) in /in/HsSh9 on line 12 unlockPHPEOL Fatal error: Uncaught Error: Call to a member function undefined() on null in /in/HsSh9:21 Stack trace: #0 {main} thrown in /in/HsSh9 on line 21
Process exited with code 255.
Output for 7.0.0 - 7.0.33, 7.1.0 - 7.1.33
Notice: Use of undefined constant PHPEOL - assumed 'PHPEOL' in /in/HsSh9 on line 7 lockPHPEOL Notice: Use of undefined constant PHPEOL - assumed 'PHPEOL' in /in/HsSh9 on line 12 unlockPHPEOL Fatal error: Uncaught Error: Call to a member function undefined() on null in /in/HsSh9:21 Stack trace: #0 {main} thrown in /in/HsSh9 on line 21
Process exited with code 255.
Output for 5.6.0 - 5.6.40
Notice: Use of undefined constant PHPEOL - assumed 'PHPEOL' in /in/HsSh9 on line 7 lockPHPEOL Notice: Use of undefined constant PHPEOL - assumed 'PHPEOL' in /in/HsSh9 on line 12 unlockPHPEOL Fatal error: Call to a member function undefined() on null in /in/HsSh9 on line 21
Process exited with code 255.
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38
Notice: Use of undefined constant PHPEOL - assumed 'PHPEOL' in /in/HsSh9 on line 7 lockPHPEOL Notice: Use of undefined constant PHPEOL - assumed 'PHPEOL' in /in/HsSh9 on line 12 unlockPHPEOL Fatal error: Call to a member function undefined() on a non-object in /in/HsSh9 on line 21
Process exited with code 255.

preferences:
282.59 ms | 402 KiB | 373 Q