How do I change a files file-extension name in PHP?
For example: $filename=\'234230923_picture.bmp\' and I want the extension to change to jpg
$filename=\'234230923_picture.bmp\'
jpg
$newname = basename($filename, ".bmp").".jpg"; rename($filename, $newname);
Remember that if the file is a bmp file, changing the suffix won't change the format :)