<?php
/**
* 判断二维数组中指定Key是否存在重复Value
* @param array $arrInput 二维数组
* @param string $strKey 键名
* @return bool
*/
function hasRepeatedValues($arrInput, $strKey)
{
//参数校验
if (!is_array($arrInput) || empty($arrInput) || empty($strKey)) {
return false;
}
//获取数组中所有指定Key的值,如果为空则表示键不存在
$arrValues = array_column($arrInput, $strKey);
if (
PHP获取二维数组中指定Key的重复Value
最新推荐文章于 2023-03-23 20:41:35 发布
本文介绍如何在PHP中高效地找出二维数组中指定Key对应Value的重复项,通过简洁的代码实现来帮助开发者解决数据处理问题。
摘要由CSDN通过智能技术生成