删除文件上传的文件扩展名 [英] Remove file extension on file upload

查看:130
本文介绍了删除文件上传的文件扩展名的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在为网站编写代码,上传图片,然后显示图片样式。我想要发生的是将图像的文件名作为图像的名称输入到网站的数据库中。但是,只要使用 $ _ FILES ['images'] ['name']; 给我的文件名,但在最后附加文件扩展名。我将如何删除文件扩展名,所以我可以使用自己的文件名?您可以使用 pathinfo()函数( =http://php.net/pathinfo =noreferrer> docs )。

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


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?

解决方案

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

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

这篇关于删除文件上传的文件扩展名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆