Change file extension

前端 未结 5 1612
遇见更好的自我
遇见更好的自我 2021-01-12 06:46

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

5条回答
  •  南方客
    南方客 (楼主)
    2021-01-12 07:37

    $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 :)

提交回复
热议问题