Voting

: min(five, one)?
(Example: nine)

The Note You're Voting On

subhrajyoti dot de007 at gmail dot com
6 years ago
Simple and clean way to get duplicate entries removed from a multidimensional array.

<?php
$multi_array
= $multi_array [0];
$multi_array = array_unique($multi_array);
print_r($multi_array);
?>

<< Back to user notes page

To Top