success('获取当前文件列表成功!', UpdateLogic::build()); } /** * 读取线上文件数据 * @param string $encode */ public function read($encode) { $file = env('root_path') . decode($encode); if (!file_exists($file)) $this->error('获取文件内容失败!'); $this->success('获取文件内容成功!', [ 'format' => 'base64', 'content' => base64_encode(file_get_contents($file)), ]); } }