Change file extension

前端 未结 5 1525
遇见更好的自我
遇见更好的自我 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:36

    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:

    $filename = preg_replace('"\.(bmp|gif)$"', '.jpg', $filename);
    

提交回复
热议问题