Laravel 5.3 Storage::put 用文件名创建一个目录
Laravel 5.3 Storage::put creates a directory with the file name
我正在使用 Laravel 的文件存储功能来保存文件:
public function dataPost(Request $request) {
$fileInForm = 'doc';
if ($request->hasFile($fileInForm)) {
$file = $request->file($fileInForm);
if ($file->isValid()) {
// Filename is hashed filename + part of timestamp
$hashedName = hash_file('md5', $file->path());
$timestamp = microtime() * 1000000;
$newFilename = $hashedName . $timestamp . '.' . $file->getClientOriginalExtension();
Storage::disk('local')->put($newFilename, $file);
}
}
}
这确实保存了文件,但保存在与文件同名的目录中,例如:
storage/app/952d6c009.jpg/952d6c009.jpg
或
storage/app/234234234.jpg/234234234.jpg
这是预期的吗?有什么方法可以只存储文件而无需为每个文件创建单独的目录?
谢谢!
发生这种情况是因为您将要存储的目录指定为文件名。 newFilename
,应该是目录名,如'images'。参考这一行
Storage::disk('local')->put($newFilename, $file);
因此您可以将其更改为
Storage::disk('local')->putFile('images', $file);
然后你会得到存储在storage/app/images/234234234.jpg
的路径
您需要在第二个参数而不是文件对象中提供文件内容,试试这个:
Storage::disk('local')->put($newFilename, file_get_contents($file));
Storage::disk('local')->putFileAs('', $file, $filenewname);
$file 是 encoded.You 必须取消对文件的编码。
存储::磁盘('local')->put($newFilename, File::get($file));
我正在使用 Laravel 的文件存储功能来保存文件:
public function dataPost(Request $request) {
$fileInForm = 'doc';
if ($request->hasFile($fileInForm)) {
$file = $request->file($fileInForm);
if ($file->isValid()) {
// Filename is hashed filename + part of timestamp
$hashedName = hash_file('md5', $file->path());
$timestamp = microtime() * 1000000;
$newFilename = $hashedName . $timestamp . '.' . $file->getClientOriginalExtension();
Storage::disk('local')->put($newFilename, $file);
}
}
}
这确实保存了文件,但保存在与文件同名的目录中,例如:
storage/app/952d6c009.jpg/952d6c009.jpg
或
storage/app/234234234.jpg/234234234.jpg
这是预期的吗?有什么方法可以只存储文件而无需为每个文件创建单独的目录?
谢谢!
发生这种情况是因为您将要存储的目录指定为文件名。 newFilename
,应该是目录名,如'images'。参考这一行
Storage::disk('local')->put($newFilename, $file);
因此您可以将其更改为
Storage::disk('local')->putFile('images', $file);
然后你会得到存储在storage/app/images/234234234.jpg
您需要在第二个参数而不是文件对象中提供文件内容,试试这个:
Storage::disk('local')->put($newFilename, file_get_contents($file));
Storage::disk('local')->putFileAs('', $file, $filenewname);
$file 是 encoded.You 必须取消对文件的编码。
存储::磁盘('local')->put($newFilename, File::get($file));