美文网首页
php 七牛云转存远程链接/文件/图片/媒体资源

php 七牛云转存远程链接/文件/图片/媒体资源

作者: galenv | 来源:发表于2023-09-04 16:52 被阅读0次

    //转存wav

    function savewav() {

    $fileUrl=input('wav');

        $accessKey =$this->config['accessKey'];

        $secretKey =$this->config['secretKey'];

        $auth =new Auth($accessKey, $secretKey);

        $bucket =$this->config['bucket'];

        $fileContents=file_get_contents($fileUrl);

        $time=time();

        $upManager =new UploadManager();

        $auth      =new Auth($accessKey, $secretKey);

        $token    =$auth->uploadToken($this->config['bucket']);

        $result =$upManager->put($token,  $key ='/wav/some/'.$time.'.wav',$fileContents);

        return result ;

    }

    相关文章

      网友评论

          本文标题:php 七牛云转存远程链接/文件/图片/媒体资源

          本文链接:https://www.haomeiwen.com/subject/eulcvdtx.html