3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arr = array( 0 => array('foo' => '1','bar' => 'A'), 1 => array('foo' => '2','bar' => 'B'), 2 => array('foo' => '3','bar' => 'C')); $foo = array_map('array_shift', &$arr); $bar = array_map('array_pop', &$arr); var_dump($foo,$bar); ?>
Output for 5.4.0 - 5.4.9
Fatal error: Call-time pass-by-reference has been removed in /in/DIC4I on line 8
Process exited with code 255.
Output for 5.3.0 - 5.3.29
Deprecated: Call-time pass-by-reference has been deprecated in /in/vju2M on line 8 Deprecated: Call-time pass-by-reference has been deprecated in /in/vju2M on line 9 array(3) { [0]=> string(1) "1" [1]=> string(1) "2" [2]=> string(1) "3" } array(3) { [0]=> string(1) "A" [1]=> string(1) "B" [2]=> string(1) "C" }

preferences:
175.18 ms | 1399 KiB | 47 Q