function doMatch($f) {
        echo $f,
             " = ",
             (preg_match("#^form[1-6]\.php\$#",basename($f))?"true":"false"),
             "\n";
}

doMatch("form1.php");   // true
doMatch("form2.php");   // true
doMatch("form3.php");   // true
doMatch("form4.php");   // true
doMatch("form5.php");   // true
doMatch("form6.php");   // true
doMatch("/some/dir/form6.php"); // true
doMatch("form06.php");  // false
doMatch("/some/dir/form06.php");// false
doMatch("form16.php");  // false
doMatch("/some/dir/form16.php");// false


[EMAIL PROTECTED] wrote:
> hi.
> 
> I have to check if the script file belongs to any ov form1.php to
> form6.php files. Need something like:
> preg_match('/form*.php/', $_SERVER['PHP_SELF'])
> wher * kan be any number between 1 and 6.
> 
> Thanks for any help.
> 
> -afan
> 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to