截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. require dirname( __FILE__ ) . '/../vendor/autoload.php';
  3. $secretId = 'COS_SECRETID';
  4. //'云 API 密钥 SecretId';
  5. $secretKey = 'COS_SECRETKEY';
  6. //'云 API 密钥 SecretKey';
  7. $region = 'ap-beijing';
  8. //设置一个默认的存储桶地域
  9. $cosClient = new Qcloud\Cos\Client(
  10. array(
  11. 'region' => $region,
  12. 'schema' => 'https', //协议头部,默认为http
  13. 'credentials'=> array(
  14. 'secretId' => $secretId ,
  15. 'secretKey' => $secretKey
  16. )
  17. )
  18. );
  19. function uploadfiles( $path, $cosClient ) {
  20. foreach ( scandir( $path ) as $afile ) {
  21. if ( $afile == '.' || $afile == '..' ) continue;
  22. if ( is_dir( $path.'/'.$afile ) ) {
  23. uploadfiles( $path.'/'.$afile, $cosClient );
  24. } else {
  25. $local_file_path = $path.'/'.$afile;
  26. $cos_file_path = $local_file_path;
  27. // 按照需求自定义拼接上传路径
  28. try {
  29. $cosClient->upload(
  30. $bucket = 'examplebucket-125000000', //格式:BucketName-APPID
  31. $key = $cos_file_path,
  32. $body = fopen( $cos_file_path, 'rb' )
  33. );
  34. } catch ( \Exception $e ) {
  35. echo( $e );
  36. }
  37. }
  38. }
  39. }
  40. $local_path = '/data/home/folder';
  41. uploadfiles( $local_path, $cosClient );