-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathoss.cls.php
executable file
·48 lines (40 loc) · 1.08 KB
/
oss.cls.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
/*
* This file is part of the phpems/phpems.
*
* (c) oiuv <[email protected]>
*
* 项目维护:oiuv(QQ:7300637) | 定制服务:火眼(QQ:278768688)
*
* This source file is subject to the MIT license that is bundled.
*/
use OSS\Core\OssException;
use OSS\OssClient;
class oss
{
public $G;
public function __construct(&$G)
{
$this->G = $G;
}
public function upload($filepath)
{
$accessKeyId = OSSKEYID;
$accessKeySecret = OSSKEYSECRET;
$endpoint = OSSENDPOINT;
$bucket = OSSBUCKET;
$object = date('Ymd').'/'.basename($filepath);
$filePath = $filepath;
try {
$ossClient = new OssClient($accessKeyId, $accessKeySecret, $endpoint);
$rs = $ossClient->uploadFile($bucket, $object, $filePath);
$path = $rs['oss-request-url'];
$path = str_ireplace('url1', 'url2', $path);
} catch (OssException $e) {
//printf(__FUNCTION__ . ": FAILED\n");
//printf($e->getMessage() . "\n");
return;
}
return $path;
}
}