3v4l.org

run code in 300+ PHP versions simultaneously
<?php $json = <<<JSON [ [ 51.11041991029261, -2.274169921875 ], [ 51.08282186160978, -3.460693359375 ], [ 50.443513052458044, -3.570556640625 ], [ 50.443513052458044, -1.966552734375 ] ] JSON; $coords = json_decode($json, true); $lats = array_column($coords, 0); $lons = array_column($coords, 1); var_dump($lats, $lons);
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
array(4) { [0]=> float(51.11041991029261) [1]=> float(51.08282186160978) [2]=> float(50.443513052458044) [3]=> float(50.443513052458044) } array(4) { [0]=> float(-2.274169921875) [1]=> float(-3.460693359375) [2]=> float(-3.570556640625) [3]=> float(-1.966552734375) }
Output for 5.5.24 - 5.5.35, 5.6.8 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
array(4) { [0]=> float(51.110419910293) [1]=> float(51.08282186161) [2]=> float(50.443513052458) [3]=> float(50.443513052458) } array(4) { [0]=> float(-2.274169921875) [1]=> float(-3.460693359375) [2]=> float(-3.570556640625) [3]=> float(-1.966552734375) }
Output for 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45
Fatal error: Call to undefined function array_column() in /in/CoEt2 on line 8
Process exited with code 255.
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.1, 5.1.3 - 5.1.6
Fatal error: Call to undefined function json_decode() in /in/CoEt2 on line 7
Process exited with code 255.
Output for 5.1.2
Fatal error: Call to undefined function json_decode() in /in/CoEt2 on line 8
Process exited with code 255.
Output for 4.4.5 - 4.4.9
Fatal error: Call to undefined function: json_decode() in /in/CoEt2 on line 7
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.1, 4.4.3 - 4.4.4
Fatal error: Call to undefined function: json_decode() in /in/CoEt2 on line 7
Process exited with code 255.
Output for 4.4.2
Fatal error: Call to undefined function: json_decode() in /in/CoEt2 on line 8
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Call to undefined function: json_decode() in /in/CoEt2 on line 7

preferences:
247.6 ms | 401 KiB | 328 Q