PHP 8.6.0 Alpha 2 available for testing

Voting

: max(three, seven)?
(Example: nine)

The Note You're Voting On

agarcia at rsn dot com dot co
20 years ago
This is a script for multi_dimensional arrays

<?php
function remove_dup($matriz) {
    $aux_ini=array();
    $entrega=array();
    for($n=0;$n<count($matriz);$n++)
    {
        $aux_ini[]=serialize($matriz[$n]);
    }
    $mat=array_unique($aux_ini);
    for($n=0;$n<count($matriz);$n++)
    {
        
            $entrega[]=unserialize($mat[$n]);
        
    }
    return $entrega;
}
?>

<< Back to user notes page

To Top