2 回答
TA贡献1846条经验 获得超7个赞
问题是在循环中使用 unset() 。在下一次迭代中,索引不再与您使用 unset() 破坏数组之前的索引相同。有时,您可以使用 array_values() 来处理这个问题,但在这种情况下,只构建第二个仅包含您想要的值的数组会更简单。以下代码有效。我使用 array_values() 只是为了获取您提供的字符串并使索引恢复正常。
也就是说,由于“前 2 个元素之前已使用 unset 删除”,因此您需要在到达此部分之前对数组运行 array_values() 。
<?php
$str ='{"8":"2020-06-L-1.txt","9":"2020-06-L-2.txt","10":"2020-06-L-3.txt","11":"2020-06-L-4.txt","12":"2020-06-L-5.txt","15":"2020-06-N-3.txt","16":"2020-06-N-4.txt","17":"2020-06-N-5.txt","18":"2020-06-N-6.txt","19":"2020-06-O-1.txt","20":"2020-06-O-2.txt","21":"2020-06-O-3.txt","22":"2020-06-O-4.txt","23":"2020-06-S-1.txt","24":"2020-06-S-2.txt","25":"2020-06-S-3.txt"}';
$fileArray = json_decode($str, true);
$fileArray = array_values($fileArray);
echo '<p>fileArray: ';
var_dump($fileArray);
echo '</p>';
function fileFilter() {
global $fileArray, $fileFilterPattern;
$filteredArray = [];
for ($j = 0; $j < count($fileArray); $j++) {
if(preg_match($fileFilterPattern, $fileArray[$j]) === 1) {
//unset($fileArray[$j]);
array_push($filteredArray, $fileArray[$j]);
}
}
echo '<p>filteredArray: ';
var_dump($filteredArray);
echo '</p>';
//return;
}
$month =='';
$year = '';
// If user does not provide a filter value, it gets converted into wildcard symbol
if ($month == '') {
$month = '..';
}
if ($year == '') {
$year = '....';
}
if ($section == '') {
$section = '.';
}
$section = 'L';
$fileFilterPattern = "#{$year}-{$month}-{$section}-.\.txt#";
echo '<p>fileFilterPattern: ';
var_dump($fileFilterPattern);
echo '</p>';
/* function only runs if user applied at least one filter */
if (!($month == '..' && $year == '....' && $section == '.')) {
fileFilter();
}
?>
TA贡献1848条经验 获得超10个赞
主要问题是count每次减少unset,所以你应该定义一次计数。假设-1和$j = 2对于您的场景是正确的:
$count = count($fileArray) - 1;
for ($j = 2; $j < $count; $j++) {
if(!(preg_match($fileFilterPattern, $fileArray[$j]))) {
unset($fileArray[$j]);
}
}
还有其他方法,您不必假设然后跟踪密钥:
foreach($fileArray as $k => $v) {
if(!preg_match($fileFilterPattern, $v)) {
unset($fileArray[$k]);
}
}
我会摆脱你的fileFilter功能并改用这个方便的功能,它将返回与模式匹配的所有项目:
$fileArray = preg_grep($fileFilterPattern, $fileArray);
- 2 回答
- 0 关注
- 204 浏览
添加回答
举报