PHP code example of larva / laravel-flysystem-cos

1. Go to this page and download the library: Download larva/laravel-flysystem-cos library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

larva / laravel-flysystem-cos example snippets


'cos' => [
    'driver' => 'cos',
    // 'endpoint' => getenv('TENCENT_COS_ENDPOINT'),//接入点,留空即可
    'region' => env('TENCENT_COS_REGION'),
    'credentials' => [//认证凭证
        'appId' => env('TENCENT_COS_APP_ID'),//就是存储桶的后缀 如 1258464748
        'secretId' => env('TENCENT_COS_SECRET_ID'),
        'secretKey' => env('TENCENT_COS_SECRET_KEY'),
        'token' => env('TENCENT_COS_TOKEN'),
    ],
    'bucket' => env('TENCENT_COS_BUCKET'),
    'root' => getenv('COS_PREFIX'),//前缀
    'url'=> env('TENCENT_COS_URL'),//CDN URL 
    //以下均可省略
    'schema' => 'https',
    'timeout' => 3600,
    'connect_timeout' => 3600,
    'ip' => null,
    'port' => null,
    'domain' => null,
    'proxy' => null,
    'encrypt'=> null,
],

    'default' => 'cos'