|
Posted by Jerry Stuckle on 01/08/08 13:14
bizt wrote:
> Hi,
>
> Im trying to write a regular expression in PHP to check if a submitted
> filename has .php on the end of it. For example, filename.html woulod
> return false whereas filename.php would return true.
>
> My code is:
>
> if (ereg ("$.php", $filename))
> return true;
> else
> return false;
>
> Obviously my expression is wrong, could someone please tell me what Im
> doing wrong. Thanks
>
> Burnsy
>
A regex is overkill for a simple string. strcmp() is better in this case.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Navigation:
[Reply to this message]
|