Snippets v2

Languages
My Snippets

Remove extension from a filename Login or Register to Bookmark this snippet

Description PHP

Removes the extension (and dot) of a filename

The Code Download
  1. <?php
  2. function RemoveExtension($filename) {
  3.     $file = substr($filename, 0,strrpos($filename,'.'));   
  4.     return $file;
  5. }
  6. ?>
Credits Contact JC

Added by JC on 11th November, 2007

Comments

There are no comments about this snippet.

Post Comment HTML is allowed

You must be registered and logged in to post a comment.

Login here to post a comment