NevadaJones
Programmer
- Sep 5, 2006
- 26
What I want to do is pull off the file extension of a file. This works most of the time, but not if a file has more than one period.
$filename_ext = strchr($filename, ".");
How can I get the extension of a file like:
$filename = "this.has.more.than.one.period.ext";
Sam
;