3v4l.org

run code in 300+ PHP versions simultaneously
<?php $acceptFormat = array( 'jpg' => 'image/jpeg', 'jpg' => 'image/jpg', 'png' => 'image/png' ); $ext ='jpg'; if (!in_array($ext,array_keys($acceptFormat))) { throw new RuntimeException('Invalid file format.'); } $mime = 'video/mkv'; if (!in_array($mime,array_values($acceptFormat))) { throw new RuntimeException('Invalid mime format.'); }
Output for 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.25, 8.4.1 - 8.4.12
Fatal error: Uncaught RuntimeException: Invalid mime format. in /in/aNdMM:18 Stack trace: #0 {main} thrown in /in/aNdMM on line 18
Process exited with code 255.
Output for 5.6.38
Fatal error: Uncaught exception 'RuntimeException' with message 'Invalid mime format.' in /in/aNdMM:18 Stack trace: #0 {main} thrown in /in/aNdMM on line 18
Process exited with code 255.

preferences:
153.48 ms | 407 KiB | 5 Q