You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
458 B
PHP

<?php
function array_uniq($my_array, $value)
{
$count = 0;
foreach($my_array as $array_key => $array_value)
{
if ( ($count > 0) && ($array_value == $value) )
{
unset($my_array[$array_key]);
}
if ($array_value == $value) $count++;
}
return array_filter($my_array);
}
$numbers = array(4, 5, 6, 7, 4, 7, 8);
print_r(array_uniq($numbers, 7));
?>