Php - 将文件上传到特殊字符目录

时间:2017-07-26 09:31:15

标签: php laravel upload special-characters

我在尝试将文件保存在具有特殊字符的目录中时遇到问题...例如我有目录recepção并创建一个名为Recepção的新文件夹并放入文件那里。

我正在使用laravel框架,我以这种方式保存文件:

Input::file('file')->move('/recepção', 'file.pdf');

我该如何解决这个问题?

谢谢

1 个答案:

答案 0 :(得分:3)

您必须使用utf8_decode(),因此:

Input::file('file')->move(utf8_decode('/recepção'), 'file.pdf');