How can I change a file's extension using PHP?

前端 未结 11 2072
清歌不尽
清歌不尽 2020-12-10 00:43

How can I change a file\'s extension using PHP?

Ex: photo.jpg to photo.exe

11条回答
  •  天涯浪人
    2020-12-10 01:07

    Better way:

    substr($filename, 0, -strlen(pathinfo($filename, PATHINFO_EXTENSION))).$new_extension
    

    Changes made only on extension part. Leaves other info unchanged.

    It's safe.

提交回复
热议问题