3v4l.org

run code in 300+ PHP versions simultaneously
<?php // Output using xdebug $ary = array('zero', 'one', 'two'); //array_pop($ary); //array_pop($ary); unset($ary[1]); unset($ary[2]); $bry = $ary; $ary[] = 'three'; $bry[] = 'three'; var_dump($ary, $bry, $ary == $bry); ?>

preferences:
29.95 ms | 402 KiB | 5 Q