gpt4 book ai didi

php - 从 PHP 数组中删除多个元素的有效方法

转载 作者:可可西里 更新时间:2023-10-31 22:19:27 25 4
gpt4 key购买 nike

我有一个动态生成的文件名数组,假设它看起来像这样:

$files = array("a-file","b-file","meta-file-1", "meta-file-2", "z-file");

我有几个我想从数组中丢弃的特定文件名:

$exclude_file_1 = "meta-file-1";
$exclude_file_2 = "meta-file-2";

因此,我将始终知道要丢弃的元素的值,但不知道键。

目前我正在寻找几种方法来做到这一点。一种方法,使用 array_filter 和自定义函数:

function excludefiles($v)
{
if ($v === $GLOBALS['exclude_file_1'] || $v === $GLOBALS['exclude_file_2'])
{
return false;
}
return true;
}

$files = array_values(array_filter($files,"excludefiles"));

另一种方式,using array_keys and unset :

$exclude_files_keys = array(array_search($exclude_file_1,$files),array_search($exclude_file_2,$files));
foreach ($exclude_files_keys as $exclude_files_key)
{
unset($files[$exclude_files_key]);
}
$files = array_values($page_file_paths);

两种方式都能产生预期的结果。

我只是想知道哪个更有效(为什么)?

或者也许还有另一种更有效的方法?

也许有一种方法可以在 array_search 函数中使用多个搜索值?

最佳答案

你应该简单地使用 array_diff :

$files = array("a-file","b-file","meta-file-1", "meta-file-2", "z-file");
$exclude_file_1 = "meta-file-1";
$exclude_file_2 = "meta-file-2";

$exclude = array($exclude_file_1, $exclude_file_2);
$filtered = array_diff($files, $exclude);

PHP 的一个缺点是它有无数的函数来做特定的小事,但有时这也很方便。

当你遇到这样的情况(找到相关函数后找到了解决方案,但不确定是否有更好的),闲暇时浏览一下php.net上的函数列表边栏是个不错的主意.只需阅读函数名称即可获得巨大 yield 。

关于php - 从 PHP 数组中删除多个元素的有效方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10090277/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com