<?php // your code goes here $users = array(1,2,3,4,5); $friends = array(2,3); $result = array_diff($users, $friends); print_r($result);
Standard input is empty
Array ( [0] => 1 [3] => 4 [4] => 5 )
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!