Voting

: max(one, seven)?
(Example: nine)

The Note You're Voting On

jk at ricochetsolutions dot com
18 years ago
soywiz's function didnt seem to work for me, but this did.

<?php
if(!function_exists('fnmatch')) {

function
fnmatch($pattern, $string) {
return
preg_match("#^".strtr(preg_quote($pattern, '#'), array('\*' => '.*', '\?' => '.'))."$#i", $string);
}
// end

} // end if
?>

<< Back to user notes page

To Top