| 123456789101112131415161718192021222324 |
- <?php
- namespace Yxy\Service;
- interface AliOssServiceInterface
- {
- /**
- * 创建oss软连接
- * @param string $object
- * @param string $link
- * @return mixed
- */
- public function putSymlink(string $object, string $link);
- /**
- * 创建有效期链接
- * @param string $object
- * @param int $time_out
- * @return mixed
- */
- public function makeSignUrl(string $object, int $time_out = 20);
- }
|