gpt4 book ai didi

php - 不区分大小写的array_unique

转载 作者:IT王子 更新时间:2023-10-29 01:13:12 25 4
gpt4 key购买 nike

我正在尝试编写几行代码来制作不区分大小写的数组唯一类型函数。到目前为止,这是我所拥有的:

foreach ($topics as $value) {
$lvalue = strtolower($value);
$uvalue = strtolower($value);

if (in_array($value, $topics) == FALSE || in_array($lvalue, $topics) == FALSE || in_array($uvalue, $topics) == FALSE) {
array_push($utopics, $value);
}
}

问题在于 if 语句。我认为我的语法有问题,但我对 PHP 比较陌生,我不确定它是什么。有什么帮助吗?

最佳答案

function array_iunique( $array ) {
return array_intersect_key(
$array,
array_unique( array_map( "strtolower", $array ) )
);
}

关于php - 不区分大小写的array_unique,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2276349/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com