fork download
  1. <?php
  2.  
  3. // your code goes here
  4.  
  5. $users = array(1,2,3,4,5);
  6.  
  7. $friends = array(2,3);
  8.  
  9. $result = array_diff($users, $friends);
  10.  
  11. print_r($result);
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 1
    [3] => 4
    [4] => 5
)