2023-09-17

array_filter()函数在PHP中的作用是过滤数组中的元素,并返回过滤后的新数组

array_filter()函数在PHP中的作用是过滤数组中的元素,并返回过滤后的新数组

array_filter() 函数使用用户创建的回调函数过滤数组的元素。它返回过滤后的数组。

语法

array_filter(arr, callback, flag)
登录后复制

参数

  • arr – 将被过滤的数组

  • callback – 要使用的回调函数

  • flag – 发送到回调函数的参数:

    >

    • ARRAY_FILTER_USE_KEY – 将键作为回调的唯一参数而不是值传递

    • ARRAY_FILTER_USE_BOTH – 将值和键作为参数传递给回调,而不是值

返回

array_filter() 函数返回过滤后的数组。

示例

 实时演示

登录后复制

输出

Array
(
[1] => 6
[4] => 20
[5] => 30
[7] => 48
[9] => 66
)
登录后复制

以上就是array_filter()函数在PHP中的作用是过滤数组中的元素,并返回过滤后的新数组的详细内容,更多请关注php中文网其它相关文章!

https://www.php.cn/faq/609570.html

发表回复

Your email address will not be published. Required fields are marked *