PHP从数组中获取相同值的范围



是否有任何方法可以获得相同值的键范围并创建新数组?

假设我们在php中有一个这样的数组:

$first_array = ['1'=>'a','2'=>'a','3'=>'a','4'=>'b','5'=>'b','6'=>'a','7'=>'a'];

如何得到这个数组?这个有什么函数吗?

$second_array = ['1-3'=>'a','4-5'=>'b','6-7'=>'a'];

循环遍历,提取键,生成范围并插入到新数组-

$first_array = ['1'=>'a','2'=>'a','3'=>'a','4'=>'b','5'=>'b'];
$flip = array();
foreach($first_array as $key => $val) {
  $flip[$val][] = $key;
}
$second_array = [];
foreach($flip as $key => $value) {
    $newKey = array_shift($value).' - '.end($value);
    $second_array[$newKey] = $key;
}

array(2) {
  ["1 - 3"]=>
  string(1) "a"
  ["4 - 5"]=>
  string(1) "b"
}

关于您的第一个问题,您可以使用foreach()循环获得每个值的范围。

$first_array = ['1'=>'a','2'=>'a','3'=>'a','4'=>'b','5'=>'b'];
foreach($first_array as $key=>$value)
{
        //do your coding here, $key is the index of the array and $value is the value at that range, you can use that index and value to perform array manipulations
}

关于你的第二个问题,它不完全清楚什么是试图实现那里。但是无论你想做什么比如创建一个新的数组并修改索引等等都可以在这个foreach()循环中完成

如果有人还在寻找答案,以下是我所做的。给定数组

$first_array = ['0'=>'a',
                '1'=>'a',
                '2'=>'a',
                '3'=>'a',
                '4'=>'a',
                '5'=>'b',
                '6'=>'b',
                '7'=>'a',
                '8'=>'a']

我构建了一个多维数组,其中每个元素是包含三个以上元素的数组:

[0] - The value in the first array
[1] - The key where the value starts repeating
[2] - The last key where the value stops repeating

的代码
$arrayRange = [];
for($i = 0; $i < count($first_array); $i++){
    if(count($arrayRange) == 0){
        // The multidimensional array is still empty
        $arrayRange[0] = array($first_array[$i], $i, $i);
    }else{
        if($first_array[$i] == $arrayRange[count($arrayRange)-1][0]){
            // It's still the same value, I update the value of the last key
            $arrayRange[count($arrayRange)-1][2] = $i;
        }else{
            // It's a new value, I insert a new array
            $arrayRange[count($arrayRange)] = array($first_array[$i], $i, $i);
        }
    }
}

这样就得到了这样的多维数组:

$arrayRange[0] = array['a', 0, 4]; 
$arrayRange[1] = array['b', 5, 6];
$arrayRange[2] = array['a', 7, 8];

相关内容

  • 没有找到相关文章

最新更新