“Usuń zduplikowane wartości w tablicy PHP” Kod odpowiedzi

Usuń zduplikowane wartości w tablicy PHP

<?php
$list_programming_language = array('C#',  'C++', 'PHP', 'C#', 'PHP');
$result = array_unique($list_programming_language);
print_r($result);
?>
  
// ==> 'C#',  'C++', 'PHP'
Zidane (Vi Ly - VietNam)

array_unique


<?php
$input = array("a" => "green", "red", "b" => "green", "blue", "red");
$result = array_unique($input);
print_r($result);
?>

Array
(
    [a] => green
    [0] => red
    [1] => blue
)
Alberto Peripolli

Jak usunąć zduplikowane wartości z tablicy w PHP

<?php
$input = array("a" => "green", "red", "b" => "green", "blue", "red");
$result = array_unique($input);
print_r($result);
?>

Array
(
    [a] => green
    [0] => red
    [1] => blue
)
Nilesh

PHP usuń duplikaty z tablicy

<?php
$fruits_list = array('Orange',  'Apple', ' Banana', 'Cherry', ' Banana');
$result = array_unique($fruits_list);
print_r($result);
?>
Undefined

Jak usunąć zduplikowane wartości z wielowymiarowej tablicy w PHP

We used this to de-duplicate results from a variety of overlapping queries.

$input = array_map("unserialize", array_unique(array_map("serialize", $input)));
Nilesh

php usuń duplikaty ze sznurka

$str = implode(',',array_unique(explode(',', $str)));
Geeky Bravo

Odpowiedzi podobne do “Usuń zduplikowane wartości w tablicy PHP”

Pytania podobne do “Usuń zduplikowane wartości w tablicy PHP”

Więcej pokrewnych odpowiedzi na “Usuń zduplikowane wartości w tablicy PHP” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu