glob() - a useful but obscure PHP function
Did you know this function exists? Well, since 4.3, there's this new PHP function called glob();
useful if one simply needs a list of files from a directory, and
eventually apply ereg patterns to file matching. Before one had to
either use the dir() class, or the opendir() function; something like this:
Read the rest of this entry ... (82 words left)