using PHP to remove the extension from a file and then downloading it

前端 未结 3 1623
我在风中等你
我在风中等你 2021-01-29 14:28

I recently had a asked a question very similar to this one, however after evaluating that I did not explain it in the best way I have come back once again explaining it in a gre

3条回答
  •  被撕碎了的回忆
    2021-01-29 15:01

    Okay so to remove an extention from a file you could do is

    $withoutExtion = preg_replace('/\\.[^.\\s]{3,4}$/', '', $youfilename);

    ...followed by your file download code

提交回复
热议问题