有什么方法可以从下面的数组中删除连续的重复项,同时只保留第一个?
数组如下所示:
$a=array("1"=>"go","2"=>"stop","3"=>"stop","4"=>"stop","5"=>"stop","6"=>"go","7"=>"go","8"=>"stop");
我想要的是有一个包含以下内容的数组:
$a=array("1"=>"go","2"=>"stop","3"=>"go","7"=>"stop");
有什么方法可以从下面的数组中删除连续的重复项,同时只保留第一个?
数组如下所示:
$a=array("1"=>"go","2"=>"stop","3"=>"stop","4"=>"stop","5"=>"stop","6"=>"go","7"=>"go","8"=>"stop");
我想要的是有一个包含以下内容的数组:
$a=array("1"=>"go","2"=>"stop","3"=>"go","7"=>"stop");
连续重复?我不知道本机功能,但这一个有效。差不多吧。以为我理解错了。在我的函数中,7 => "go" 是 6 => "go" 的副本,而 8 => "stop" 是新值...?
function filterSuccessiveDuplicates($array)
{
$result = array();
$lastValue = null;
foreach ($array as $key => $value) {
// Only add non-duplicate successive values
if ($value !== $lastValue) {
$result[$key] = $value;
}
$lastValue = $value;
}
return $result;
}
您可以执行以下操作:
if(current($a) !== $new_val)
$a[] = $new_val;
假设您没有在两者之间操作该数组,则可以使用current()
它比每次计算它来检查值更有效count($a)-1