Home > Backend Development > PHP Tutorial > 七牛云存储 - 小白求助:关于百度ueditor编辑器 php版 文件保存位置的问题

七牛云存储 - 小白求助:关于百度ueditor编辑器 php版 文件保存位置的问题

WBOY
Release: 2016-06-06 20:27:13
Original
1401 people have browsed it

官网下载的

UEditor(php)
https://github.com/widuu/qiniu_ueditor_1.4.3

默认的话 保存的文件都是在一个目录里面
怎么设置按月份目录保存

下面的这个该怎么写 谢谢

<code>//保存规则
$SAVETYPE = "date"; //现在支持unix时间戳,unix时间戳写date,如果文件名上传就留空</code>
Copy after login
Copy after login

回复内容:

官网下载的

UEditor(php)
https://github.com/widuu/qiniu_ueditor_1.4.3

默认的话 保存的文件都是在一个目录里面
怎么设置按月份目录保存

下面的这个该怎么写 谢谢

<code>//保存规则
$SAVETYPE = "date"; //现在支持unix时间戳,unix时间戳写date,如果文件名上传就留空</code>
Copy after login
Copy after login

https://github.com/widuu/qiniu_ueditor_1.4.3/blob/master/php/action_upload.php#L64

这一行改成

<code>$key = date("Y/m")."/".$_FILES[$filedName]["name"];
</code>
Copy after login

这样就是按照年月目录保存的了

Related labels:
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