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
Just replace it with regexp:
$filename = preg_replace('"\.bmp$"', '.jpg', $filename);
You can also extend this code to remove other image extensions, not just bmp:
bmp
$filename = preg_replace('"\.(bmp|gif)$"', '.jpg', $filename);