programthis@msn .com (Krhis) writes:
[color=blue]
> I have a search script on my site that uses glob(), how can I make it
> NON-Case Sensitive? Thanks for your help![/color]
I just experimented with glob() and gave up before I could figure it
out. Here's a solution which uses the pear File_Find package:
This should match any files ending in .png, .Png, .pNg, etc. Also, this
File_Find solution ought to be more portable since it doesn't rely on
shell expansion.
Comment