3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array1 = []; $array2 = []; $array1[] = [ "b" => "sky", ]; $array2[] = [ "b" => "moon", ]; if (array_search(sky, array_column($array1, 'b')) !== FALSE) { echo 'FOUND!'; } else { echo 'NOT FOUND!'; }
Output for 8.0.1 - 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 "sky" in /in/i3iLS:13 Stack trace: #0 {main} thrown in /in/i3iLS on line 13
Process exited with code 255.
Output for 7.4.0 - 7.4.33
Warning: Use of undefined constant sky - assumed 'sky' (this will throw an Error in a future version of PHP) in /in/i3iLS on line 13 FOUND!

preferences:
154.67 ms | 401 KiB | 121 Q