4d84a934
曹明
初始代码提交
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
namespace qcloudcos;
class Conf {
// Cos php sdk version number.
const VERSION = 'v4.2.2';
const API_COSAPI_END_POINT = 'http://region.file.myqcloud.com/files/v2/';
// Please refer to http://console.qcloud.com/cos to fetch your app_id, secret_id and secret_key.
const APP_ID = '1253296479';
const SECRET_ID = 'AKIDpHjbJxAozPwUAlogp4GSgxCX1eJ3AcRJ';
const SECRET_KEY = 'FC70067IiCpaSQPar4RsUBLVimFh5dlc';
/**
* Get the User-Agent string to send to COS server.
*/
public static function getUserAgent() {
return 'cos-php-sdk-' . self::VERSION;
}
}
|