fork download
  1. <?php
  2.  
  3. print_r(array_diff([1,2,3], [2]));
Success #stdin #stdout 0.03s 25020KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 1
    [2] => 3
)