Voting

: min(nine, seven)?
(Example: nine)

The Note You're Voting On

cedric at daneel dot net
17 years ago
To diff between n-dimensional array, juste use this :

<?php
function array_diff_values($tab1, $tab2)
{
$result = array();
foreach(
$tab1 as $values) if(! in_array($values, $tab2)) $result[] = $values;
return
$result;
}
?>

<< Back to user notes page

To Top