Package Data | |
---|---|
Maintainer Username: | daofirst |
Maintainer Contact: | 13764767060@163.com (zhengyuan tang) |
Package Create Date: | 2016-10-08 |
Package Last Update: | 2016-12-06 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-11 15:13:53 |
Package Statistics | |
---|---|
Total Downloads: | 61 |
Monthly Downloads: | 2 |
Daily Downloads: | 1 |
Total Stars: | 4 |
Total Watchers: | 2 |
Total Forks: | 3 |
Total Open Issues: | 0 |
最近更新:AliyunOSS v1.3 发布,增加删除、复制、移动文件功能。
___ __ _ ____ _____ _____
/ | / / (_) __ __ __ __ ____ / __ \ / ___/ / ___/
/ /| | / / / / / / / / / / / / / __ \ / / / / \__ \ \__ \
/ ___ | / / / / / /_/ / / /_/ / / / / / / /_/ / ___/ / ___/ /
/_/ |_|/_/ /_/ \__, / \__,_/ /_/ /_/ \____/ /____/ /____/
/____/
AliyunOSS 是阿里云 OSS 官方 SDK 的 Composer 封装,支持任何 PHP 项目,包括 Laravel、Symfony、TinyLara 等等。
Release v1.3
增加删除、复制、移动文件功能。Release v1.2
修复内存泄露 bug。Release v1.1
增加内外网配置分离。Release v1.0
完善功能,增加 Laravel 框架详细使用教程及代码。将以下内容增加到 composer.json:
require: {
"johnlui/aliyun-oss": "*"
}
然后运行 composer update
。
新建 app/services/OSS.php
,内容可参考:OSSExample.php:
<?php
namespace App\Services;
use JohnLui\AliyunOSS\AliyunOSS;
use Config;
class OSS {
private $ossClient;
public function __construct($isInternal = false)
{
$serverAddress = $isInternal ? Config::get('app.ossServerInternal') : Config::get('app.ossServer');
$this->ossClient = AliyunOSS::boot(
$serverAddress,
Config::get('app.AccessKeyId'),
Config::get('app.AccessKeySecret')
);
}
public static function upload($ossKey, $filePath)
{
$oss = new OSS(true); // 上传文件使用内网,免流量费
$oss->ossClient->setBucket('你的 bucket 名称');
$oss->ossClient->uploadFile($ossKey, $filePath);
}
/**
* 直接把变量内容上传到oss
* @param $osskey
* @param $content
*/
public static function uploadContent($osskey,$content)
{
$oss = new OSS(true); // 上传文件使用内网,免流量费
$oss->ossClient->setBucket('你的 bucket 名称');
$oss->ossClient->uploadContent($osskey,$content);
}
/**
* 删除存储在oss中的文件
*
* @param string $ossKey 存储的key(文件路径和文件名)
* @return
*/
public static function deleteObject($ossKey)
{
$oss = new OSS(true); // 上传文件使用内网,免流量费
return $oss->ossClient->deleteObject('你的 bucket 名称', $ossKey);
}
/**
* 复制存储在阿里云OSS中的Object
*
* @param string $sourceBuckt 复制的源Bucket
* @param string $sourceKey - 复制的的源Object的Key
* @param string $destBucket - 复制的目的Bucket
* @param string $destKey - 复制的目的Object的Key
* @return Models\CopyObjectResult
*/
public function copyObject($sourceBuckt, $sourceKey, $destBucket, $destKey)
{
$oss = new OSS(true); // 上传文件使用内网,免流量费
return $oss->ossClient->copyObject($sourceBuckt, $sourceKey, $destBucket, $destKey);
}
/**
* 移动存储在阿里云OSS中的Object
*
* @param string $sourceBuckt 复制的源Bucket
* @param string $sourceKey - 复制的的源Object的Key
* @param string $destBucket - 复制的目的Bucket
* @param string $destKey - 复制的目的Object的Key
* @return Models\CopyObjectResult
*/
public function moveObject($sourceBuckt, $sourceKey, $destBucket, $destKey)
{
$oss = new OSS(true); // 上传文件使用内网,免流量费
return $oss->ossClient->moveObject($sourceBuckt, $sourceKey, $destBucket, $destKey);
}
public static function getUrl($ossKey)
{
$oss = new OSS();
$oss->ossClient->setBucket('你的 bucket 名称');
return $oss->ossClient->getUrl($ossKey, new \DateTime("+1 day"));
}
public static function createBucket($bucketName)
{
$oss = new OSS();
return $oss->ossClient->createBucket($bucketName);
}
public static function getAllObjectKey($bucketName)
{
$oss = new OSS();
return $oss->ossClient->getAllObjectKey($bucketName);
}
/**
* 获取指定Object的元信息
*
* @param string $bucketName 源Bucket名称
* @param string $key 存储的key(文件路径和文件名)
* @return object 元信息
*/
public static function getObjectMeta($bucketName, $osskey)
{
$oss = new OSS();
return $oss->ossClient->getObjectMeta($bucketName, $osskey);
}
}
在 composer.json
中 autoload -> classmap
处增加配置:
"autoload": {
"classmap": [
"app/services"
]
}
然后运行 composer dump-autoload
。
无需配置,保证目录 App/Services
和命名空间 namespace App\Services;
一致即可自动加载。
在 app/config/app.php 中增加四项配置:
'ossServer' => 'http://服务器外网地址', //青岛为 http://oss-cn-qingdao.aliyuncs.com
'ossServerInternal' => 'http://服务器内网地址', //青岛为 http://oss-cn-qingdao-internal.aliyuncs.com
'AccessKeyId' => '阿里云给的AccessKeyId',
'AccessKeySecret' => '阿里云给的AccessKeySecret',
use App\Services\OSS;
OSS::upload('文件名', '本地路径'); // 上传一个文件
echo OSS::getUrl('某个文件的名称'); // 打印出某个文件的外网链接
OSS::createBucket('一个字符串'); // 新增一个 Bucket。注意,Bucket 名称具有全局唯一性,也就是说跟其他人的 Bucket 名称也不能相同。
OSS::getAllObjectKey('某个 Bucket 名称'); // 获取该 Bucket 中所有文件的文件名,返回 Array。
有问题请到 http://lvwenhan.com/laravel/425.html 下面留言。
除 “版权所有(C)阿里云计算有限公司” 的代码文件外,遵循 MIT license 开源。