Voting

: min(six, eight)?
(Example: nine)

The Note You're Voting On

agarcia at rsn dot com dot co
19 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