我想从数组中取消设置每隔一个项目。我不在乎键是否重新排序。
当然,我希望它快速而优雅。没有循环和临时变量可能吗?
到目前为止我自己的解决方案:
for ( $i = 1; isset($arr[$i]); $i += 2) {
unset($arr[$i]);
}
优点是,它不需要 if 语句,缺点是仍然需要一个变量 ($i
),并且它仅在键是数字且没有间隙时才有效。
function arr_unset_sec(&$arr, $key)
{
if($key%2 == 0)
{
unset($arr[$key]);
}
}
array_walk($arr, 'arr_unset_sec');
假设$arr可能是某个数组。检查这段代码。
如果你有一个类似
Array
(
[0] => test1
[1] => test2
[2] => test3
[3] => test4
[4] => test5
)
然后你可以使用以下代码。它将删除数组的每隔一项。
$i = 1;
foreach ($demo_array as $key => $row) {
if($i%2 == '0')
{
unset($demo_array[$key]);
}
$i++;
}
希望这对你有帮助。如果您需要任何进一步的帮助,请告诉我。
另一个没有循环的解决方案:
$arr = array('a', 'b', 'c', 'd', 'e');
$arr = array_filter( $arr, function($k) { return $k % 3 === 0; }, ARRAY_FILTER_USE_KEY);
优点,它不需要循环。缺点,它比我的另一个版本(带有 for 循环)慢得多,看起来有点吓人,再次取决于按键。
我将提供两种方法(array_filter()
和foreach()
循环),它们将利用条件$i++%$n
来定位要删除的元素。
这两种方法都适用于索引数组和关联数组。
-
$i++
这是后增量。 实际上,将首先评估该值,然后递增。 -
%
这是模运算符 - 它返回左侧值与右侧值的除法中的"余数"。 - 条件的返回值将为
0
或正整数。 出于这个原因,php 固有的"类型杂耍"功能可用于将0
转换为false
和正整数作为true
。 - 在
array_filter()
方法中,use()
语法必须使用&$i
,以便变量是"可修改的"。 如果没有&
,$i
将保持静态(不受后增量的影响)。 - 在
foreach()
方法中,与array_filter()
方法相比,条件!()
颠倒。array_filter()
想知道要"保留"什么;foreach()
想知道该怎么unset()
.
代码:(演示)
// if:$n=2 $n=3 $n=4 $n=5
$array=['first'=>1,
2, // remove
'third'=>3, // remove
'fourth'=>4, // remove remove
5, // remove
6, // remove remove
'seventh'=>7,
'eighth'=>8, // remove remove
'ninth'=>9]; // remove
// if $n is 0 then don't call anything, because you aren't attempting to remove anything
// if $n is 1 then you are attempting to remove every element, just re-declare as $array=[]
for($n=2; $n<5; ++$n){
$i=1; // set counter
echo "Results when filtering every $n elements: ";
var_export(array_filter($array,function()use($n,&$i){return $i++%$n;}));
echo "n---n";
}
echo "nn";
// Using a foreach loop will be technically faster (only by a small margin) but less intuitive compared to
// the literal/immediate interpretation of "array_filter".
for($n=2; $n<5; ++$n){
$i=1;
$copy=$array;
foreach($copy as $k=>$v){
if(!($i++%$n)) unset($copy[$k]); // or $i++%$n==0 or $i++%$n<1
}
echo "Results when unsetting every $n elements: ";
var_export($copy);
echo "n---n";
}
输出:
Results when filtering every 2 elements: array (
'first' => 1,
'third' => 3,
1 => 5,
'seventh' => 7,
'ninth' => 9,
)
---
Results when filtering every 3 elements: array (
'first' => 1,
0 => 2,
'fourth' => 4,
1 => 5,
'seventh' => 7,
'eighth' => 8,
)
---
Results when filtering every 4 elements: array (
'first' => 1,
0 => 2,
'third' => 3,
1 => 5,
2 => 6,
'seventh' => 7,
'ninth' => 9,
)
---
Results when unsetting every 2 elements: array (
'first' => 1,
'third' => 3,
1 => 5,
'seventh' => 7,
'ninth' => 9,
)
---
Results when unsetting every 3 elements: array (
'first' => 1,
0 => 2,
'fourth' => 4,
1 => 5,
'seventh' => 7,
'eighth' => 8,
)
---
Results when unsetting every 4 elements: array (
'first' => 1,
0 => 2,
'third' => 3,
1 => 5,
2 => 6,
'seventh' => 7,
'ninth' => 9,
)
---
$n = 1
for( $i=$n;$i=$n;)
{
unset($arOne[$i]);
unset($arSnd[$i]);
unset($arThd[$i]);
break;
}
我认为这也将是完美的。