Remove file extension on file upload(删除文件上传时的文件扩展名)
问题描述
我现在正在为一个网站编写代码,该网站上传图片,然后显示它们的画廊风格.我希望将图像的文件名作为图像的名称输入到站点的数据库中.但是,仅使用 $_FILES['images']['name'];
给了我文件名,但最后附加了文件扩展名.如何删除文件扩展名以便我可以单独使用文件名?
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 be entered into the site's database as the name of the image. However, just using $_FILES['images']['name'];
gives me the file name but with the file extension attached at the end. How would I remove the file extension so I can use the file name by itself?
推荐答案
可以使用pathinfo()
函数(文档).
$example = "my_file.jpeg";
$filename = pathinfo($example, PATHINFO_FILENAME);
echo $filename; // my_file
这篇关于删除文件上传时的文件扩展名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:删除文件上传时的文件扩展名
- SoapClient 设置自定义 HTTP Header 2021-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- Laravel 仓库 2022-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01