config = $data; } /** * 使用AK&SK初始化账号Client * @date 2022-03-26 */ public function createClient() { try { // 初始化 $oss_client = new OssClient( $this->config['access_key_id'], $this->config['access_key_secret'], $this->config['end_point']); // 返回初始化类 return $oss_client; } catch (OssException $e) { // 抛出异常 throw new OssException($e->getMessage()); } } }