Home >php教程 >PHP源码 >阿里云OSS 通过表单直接上传文件 Post Policy例子

阿里云OSS 通过表单直接上传文件 Post Policy例子

WBOY
WBOYOriginal
2016-06-08 17:20:582374browse

本文章为各位简单介绍阿里云OSS 通过表单直接上传文件 Post Policy例子,这个例子非常的简单只需要简单的像php一样就可以了,具体如下。

<script>ec(2);</script>
 代码如下 复制代码

$access_id = 'ACCESS_ID';
$access_key = 'OSS_ACCESS_KEY';
$url='http://ioutsider.oss-cn-shenzhen.aliyuncs.com';//更改成你自己的地址
$policy = '{"expiration": "2120-01-01T12:00:00.000Z","conditions":[{"bucket": "ioutsider" },["content-length-range", 0, 104857600]]}';
$policy = base64_encode($policy);
$signature = base64_encode(hash_hmac('sha1', $policy, $access_key, true));//生成认证签名
?>


   
       
       
   
   
       
文件上传

       

           
           
           
           
           
           
           

           
       

   
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn