<?php $arr = array(1,2,3,4,5,6,7,8,9,10);$get = array(0, 3,5,7);print_r(array_diff($arr, $get));
Standard input is empty
Array ( [0] => 1 [1] => 2 [3] => 4 [5] => 6 [7] => 8 [8] => 9 [9] => 10 )
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!