3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array1 = [ ['ITEM' => 1], ['ITEM' => 2], ['ITEM' => 3], ]; $array2 = [ ['ITEM' => 2], ['ITEM' => 3], ['ITEM' => 1], ['ITEM' => 4], ]; var_export( array_udiff( $array2, $array1, fn($a, $b) => $a <=> $b ) );
Output for git.master_jit, git.master
array ( 3 => array ( 'ITEM' => 4, ), )

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
44.91 ms | 405 KiB | 5 Q