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

前端 未结 11 2077
清歌不尽
清歌不尽 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:21

    For regex fans, modified version of Thanh Trung's 'preg_replace' solution that will always contain the new extension (so that if you write a file conversion program, you won't accidentally overwrite the source file with the result) would be:

    preg_replace('/\.[^.]+$/', '.', $file) . $extension
    

提交回复
热议问题