antti on 08/03/11
Last Edited at 08/03/11 09:11pm
/** * Get filename without the extension * * @param string $filename File name * @return string Filename without the extension */function dropExtension($filename) { return substr($filename, 0, strrpos($filename, "."));}
Report this snippet Tweet
Comment:
You need to login to post a comment.