The glob pattern. A question sign ('?') matches any character
and an asterisk ('*') matches a string of arbitrary length. All
other characters only match themselves.
Parameter str
string
1 is returned if the string str matches glob ,
0 (zero) otherwise.
array(string)
All strings in the array str are matched against glob ,
and those that match are returned in an array (in the same
order).