id = config('app.ali_set.Key'); $this->key = config('app.ali_set.secret'); $this->host = config('app.ali_set.host'); } /** * 使用AK&SK初始化账号Client * @param string $accessKeyId * @param string $accessKeySecret * @return Vod Client */ public static function createClient($accessKeyId, $accessKeySecret) { $config = new Config([ // 您的 AccessKey ID "accessKeyId" => $accessKeyId, // 您的 AccessKey Secret "accessKeySecret" => $accessKeySecret ]); // 访问的域名 $config->endpoint ='vod.cn-shanghai.aliyuncs.com'; return new Vod($config); } // 文件上传 public function upload() { if (!($file = $this->getUploadFile()) || empty($file)) $this->error('文件上传异常,文件可能过大或未上传!'); if (!$file->checkExt(strtolower(sysconf('storage_local_exts')))) $this->error('文件上传类型受限,请在后台配置!'); if ($file->checkExt('php,sh')) $this->error('可执行文件禁止上传到本地服务器!'); $size = $file->getSize(); $file_name = $file->getInfo('name'); $extend = pathinfo($file->getInfo('name'), PATHINFO_EXTENSION); $up_param = [ 'fileName'=>$file_name, 'FileSize'=>$size, 'title'=>'视频上传', ]; var_dump($up_param); $client = self::createClient($this->accessKeyId, $this->accessKeySecret); $createUploadVideoRequest = new CreateUploadVideoRequest($up_param); $runtime = new RuntimeOptions([]); try { // 复制代码运行请自行打印 API 的返回值 $res = $client->createUploadVideoWithOptions($createUploadVideoRequest, $runtime); //$c = json_encode(simplexml_load_string($res, 'SimpleXMLElement', LIBXML_NOCDATA)); var_dump(json_decode(json_encode($res),true)); } catch (Exception $error) { if (!($error instanceof TeaError)) { $error = new TeaError([], $error->getMessage(), $error->getCode(), $error); } // 如有需要,请打印 error Utils::assertAsString($error->message); var_dump($error->message.'22222'); } } /** * 获取本地文件对象 * @return \think\File */ private function getUploadFile() { try { return $this->request->file('file'); } catch (\Exception $e) { $this->error(lang($e->getMessage())); } } }