Heim >Backend-Entwicklung >PHP-Tutorial >php使用array_unique判断数组中是否存在相同的值

php使用array_unique判断数组中是否存在相同的值

ringa_lee
ringa_leeOriginal
2018-05-10 15:45:482557Durchsuche


<?php
$input = array("a" => "green", "red", "b" => "green", "blue", "red");
$result = array_unique($input);
print_r($result);
?>
复制代码
输出结果:
Array
(
[a] => green
[0] => red
[1] => blue
)
例2. array_unique() 和类型
<?php
$input = array(4, "4", "3", 4, 3, "3");
$result = array_unique($input);
var_dump($result);
?>
复制代码
输出结果:
array(2) {
[0] => int(4)
[2] => string(1) "3"
}





Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn