PHP wildcard matching function

Just published my PHP wildcard matching function on github - https://github.com/andrewtch/phpwildcard.

See doc there and use it like this:

 
wildcard_match('foo.*', 'foo.xy'); //true
wildcard_match('foo.?', 'foo'); //false
 

array wildcard matching is supported too:

 
wildcard_match('foo.*', array('boo.bar', 'foo.buz', 'buz.bar') // array('foo.buz')