php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #69384 Add glob_filter() function
Submitted: 2015-04-06 13:38 UTC Modified: 2020-11-18 16:28 UTC
From: bschussek at gmail dot com Assigned:
Status: Suspended Package: Filesystem function related
PHP Version: 5.6.8RC1 OS: Ubuntu 14.04 LTS
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: bschussek at gmail dot com
New email:
PHP Version: OS:

 

 [2015-04-06 13:38 UTC] bschussek at gmail dot com
Description:
------------
I'd love to see a glob_filter() function that filters an array of file paths for those file paths matching a glob, with the same rules used by glob(). This function is needed when a virtual file system (implemented in PHP) should be globbed for files.

Signature:

glob_filter(array $paths, string $glob[, int $flags = 0])

$paths - an array of file system paths
$glob - a glob
$flags - the glob() flags

Result: an array of matching file system paths

Test script:
---------------
$input = array(
    '/css',
    '/css/reset.css',
    '/css/style.css',
    '/js',
    '/js/script.js',
);

foreach (glob_filter($input, '/*/*.css') as $path) {
    echo $path."\n";
}

Expected result:
----------------
/css/reset.css
/css/style.css


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2020-11-18 16:28 UTC] cmb@php.net
-Status: Open +Status: Suspended
 [2020-11-18 16:28 UTC] cmb@php.net
It seems to me that it isn't hard to implement in userland, and I
don't see a real advantage doing it in C.  As such, this feature
requires discussion for which this bug tracker is not suitable.
So if you, or anybody else, is still interested in this, please
forward the request to the internals mailing list.  For the time
being, I'm suspending this ticket.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat May 11 02:01:29 2024 UTC