laravel-tencent-cloud
This is a tencent cloud expansion for the laravel
环境需求
- PHP >= 7.0
Installation
composer require larva/laravel-tencent-cloud -vv
for Laravel
This service provider must be registered.
// config/app.php
'providers' => [
'...',
Larva\TencentCloud\TencentCloudServiceProvider::class,
];
Use
try {
$cdn = TencentCloud::get('cdn');
$cdn->RefreshObjectCaches([
'ObjectPath' => [
'http://www.baidu.com',
],
'ObjectType' => 'File'
]);
} catch (\Exception $e) {
print_r($e->getMessage());
}
版权声明:本文为zhidc原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。