30

我正在使用 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

这是预期的吗?有没有办法只存储文件而不为每个文件单独的目录?

谢谢!

4

4 回答 4

53

您需要在第二个参数而不是文件对象中提供文件内容,试试这个:

Storage::disk('local')->put($newFilename, file_get_contents($file));

于 2016-10-12T16:58:25.387 回答
9

发生这种情况是因为您将要存储的目录指定为文件名。,newFilename应该是目录名称,例如“images”。参考这一行

Storage::disk('local')->put($newFilename, $file);

所以你可以把它改成

Storage::disk('local')->putFile('images', $file);

然后您将获得存储在的路径storage/app/images/234234234.jpg

于 2016-10-12T16:07:55.590 回答
9
Storage::disk('local')->putFileAs('', $file, $filenewname);
于 2019-02-14T15:41:10.550 回答
1

$file 已编码。您必须取消对文件的编码。

Storage::disk('local')->put($newFilename, File::get($file));

于 2019-09-10T18:05:09.587 回答