Update Update.php

This commit is contained in:
Anyon 2019-11-04 18:58:11 +08:00
parent 1bfd52c23b
commit ab9c5206fb

View File

@ -43,7 +43,7 @@ class Update extends Controller
{
$this->file = $this->app->getRootPath() . decode(input('encode', '0'));
file_exists($this->file) ? $this->success('读取文件成功!', [
'format' => 'base64', 'content' => base64_encode(file_get_contents($this->file)),
'content' => base64_encode(file_get_contents($this->file)),
]) : $this->error('获取文件内容失败!');
}