3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a = Array ( 'user_id' => 10, 'id' => 2, 'user' => 'Nakiya', ); $b = Array ( 'user_id' => 10, 'id' => 7, 'user' => 'Nakiya', ); /** * Return an array with all elements found in both input arrays. */ function intersection($a, $b) { $a = (array) $a; $b = (array) $b; return array_values(array_intersect($a, $b)); } $arr =intersection($a, $b); print_r($arr);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => 10 [1] => Nakiya )

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:
26.84 ms | 405 KiB | 5 Q