News Feed
Jobs Feed
Sections




News Archive
Jordi Boggiano's Blog:
Major glob() fail
December 07, 2009 @ 13:50:54

Jordi Boggiano had the "pleasure" of discovering a small quirk with PHP's glob function in an application he was working on - watch out for directories that contain square braces, they won't return in the results!

Working on some personal project that lists a bunch of stuff on my hard drive, I found out that directories that contain square brackets (those []) don't return any results for the simple reason that glob reads [stuff] as a character class, just like in regular expressions. When you know it it makes perfect sense, but when you don't, the documentation is really not so helpful. Of course it mentions libc's glob() and unix shells, but not everyone knows what that implies at first glance.

He tried a few things to get around the bug (including escaping the brackets in the directories) but ended up writing a function (glob_quote) to handle the escaping of all of the meta-characters glob might need to escape to return all of the files and folders correctly.

1 comment voice your opinion now!
glob fail regularexpression match


blog comments powered by Disqus

Similar Posts

Refulz.com: Special characters in Regular Expressions - Part 1

Sebastian Bergmann's Blog: Test Dependencies in PHPUnit 3.4

PHPCodeBase.com: PHP Magic Function : glob()

Pierre-Alain Joye's Blog: Finally some new features are coming, zip-1.9.0 serie began

Christian Stocker's Blog: Upload Progress Meter for Windows - The next take


Community Events











Don't see your event here?
Let us know!


podcast functional development testing zendframework2 framework conference database series composer community interview code language release object introduction tool example opinion

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework