update page now
PHP 8.1.34 Released!

Voting

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

The Note You're Voting On

cedric at daneel dot net
18 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