Remove file extension on file upload

后端 未结 4 1925
醉话见心
醉话见心 2021-01-14 05:34

I\'m writing the code for a website right now that\'s uploads images and then displays them gallery style. What I would like to happen is for the file name of the image to b

4条回答
  •  旧巷少年郎
    2021-01-14 05:57

    You can use the pathinfo() function (docs).

    $example  = "my_file.jpeg";
    $filename = pathinfo($example, PATHINFO_FILENAME);
    echo $filename; // my_file
    

提交回复
热议问题