php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #60908 Please add array_filter_recursive function
Submitted: 2012-01-27 18:04 UTC Modified: 2021-02-01 14:37 UTC
Votes:4
Avg. Score:2.2 ± 0.8
Reproduced:2 of 3 (66.7%)
Same Version:1 (50.0%)
Same OS:0 (0.0%)
From: benjamwelker at gmail dot com Assigned: cmb (profile)
Status: Wont fix Package: Arrays related
PHP Version: 5.3.9 OS: Win 7 64
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: benjamwelker at gmail dot com
New email:
PHP Version: OS:

 

 [2012-01-27 18:04 UTC] benjamwelker at gmail dot com
Description:
------------
A function like
array array_filter_recursive ( array $array [, callback $callback] )
would be very useful.

I'm not sure how it would react when encountering empty arrays within the given 
array, though.  The expected result would probably be to keep the empty arrays.

Although removing them would be desired under certain conditions as well.


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2015-05-08 22:19 UTC] cmb@php.net
In my opinion, adding more array_*_recursive() functions should be
avoided. Instead it might be useful to have array_flatten(), so
one could do

  array_filter(array_flatten($array), $callback)
  
Then again, defining array_flatten() in userland is quite simple:

  function array_flatten($array) {
      return array_reduce($array, 'array_merge', []);
  }

Anyhow, with regard to the mentioned issue of empty arrays, it
seems indeed best to leave the implementation for userland.
 [2021-02-01 14:37 UTC] cmb@php.net
-Status: Open +Status: Wont fix -Assigned To: +Assigned To: cmb
 [2021-02-01 14:37 UTC] cmb@php.net
According to my comment above, I'm closing this ticket. If anybody
still thinks it would be a useful addition to the standard
library, please pursue the RFC process[1].

[1] <https://wiki.php.net/rfc/howto>
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 26 16:01:29 2024 UTC