1

我目前正在使用 Laravel 开发一个内容管理系统,但是我遇到了一个非常奇怪的问题......

//If an asset was provided
$asset = $request->file('asset');
if($asset) {
  //Set the file name.
  $fileName = $asset->getClientOriginalName();
  //If we could move the uplaoded asset.
  if(Storage::disk('local')->put('presentation_assets/'.$fileName, $asset)) {
    //Save the file name in the database.
    $presentation->asset = $fileName;
  }
}

上述代码成功上传文件并将其放入目录中,然后继续将文件名保存在数据库中,但文件已损坏。

上传 test.txt 文件时,上传成功,但是在服务器上检查时,文件内容更改为临时路径(见下文)?????

/tmp/phpkTe9NX

谁能阐明为什么会发生这种情况?我完全被难住了!

谢谢你的帮助,

亚历克斯

4

1 回答 1

1

啊哈!原来我需要在 Storage::put() 函数上使用 file_get_contents($asset) 。现在一切都说得通了!:)

于 2017-02-28T15:07:21.927 回答