laravel不能创建中文名的文件夹或者文件
当我使用上传功能的时候,发现不能@mkdir中文名的文件夹。又或者不能创建中文名的文件夹。这是我的配置问题还是说laravel的一个bug呢。
if (!@move_uploaded_file($this->getPathname(), $target)) {
$error = error_get_last();
throw new FileException(sprintf('Could not move the file "%s" to "%s" (%s)', $this->getPathname(), $target, strip_tags($error['message'])));
}
2 个回复
xlimit
赞同来自: FiveSay 、kaxiu
shineforce
赞同来自:
File::makeDirectory($directory, '0755', true, true); //创建目录
中文目录名称会乱码。。希望有高人来帮忙解决吧。。。