[PHP] remove one array from another

for example:

$array1 = array(‘foo’, ‘bar’);
$array2 = array(‘foo’, ‘bar’, ‘donkeywings’);

now I want to take the values of $array1 out of $array2, I know this can be done using while and in_array etc. but is there an array function to this straight off, I have had a look on php.net, but cant see anything, just wondered if anyone had something on the top of thier head.

thanks much…
peace!