niklaslu / php-aliyun-oss
dev-master
2016-10-14 18:03 UTC
Requires
- aliyuncs/oss-sdk-php: ^2.0
This package is not auto-updated.
Last update: 2025-02-26 15:24:57 UTC
README
php阿里云上传
demo
上传本地文件
use niklaslu\AliyunOSS; $aliyunConfig = [ 'access_key_id' => '**************', 'access_key_secret' => '*****************', 'end_point' => 'oss-cn-shenzhen.aliyuncs.com', 'bucket' => '*******', 'domain' => 'http://********.oss-cn-shenzhen.aliyuncs.com/', // 域名 'custom' => false //custom为true时使用自定义域名 ]; $aliyun = new AliyunOSS($aliyunConfig); $obj = $aliyun->getOss(); $file = 'a.txt'; $filepath = dirname(__FILE__)."/".$file; if (file_exists($filepath)){ $res = $aliyun->upload($filepath); print_r($res); }else{ echo '无此文件'; }