PHP使用plupload如何在后台获取上传的文件名

WBOY
Release: 2016-06-20 12:38:47
Original
1408 people have browsed it

使用plupload上传图片,想将上传的图片地址写入数据库,请教一下如何在后台获取上传图片的文件名。多谢!


回复讨论(解决方案)

没用过,但是上传文件的内容都在$_FILES全局变量中
在php接收页打印下这个全局变量看看,print_r($_FILES)

一般文件名得按一套规则重命名,否则容易被后面上传的重名覆盖了。

获取上传的图片名可以使用$_FILES['上传控件名']['name']来获取
例如


可以使用
$_FILES['photo']['name']来获取

建议不用使用上传的文件名,而是按日期规则重命名文件,这样可以误覆盖同名文件。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template