+
95
-

如何通过form表单直接上传文件到阿里云oss?

如何通过form表单直接上传文件到阿里云oss?


网友回复

+
15
-

表单如下:

<?php
$access_id = 'LTAIXzp40zgh8qTl';
$access_key = '241sdlfjlskdjflkssdfsdf';
$filename="/img/test.png";
$url='http://buckname.oss-cn-beijing.aliyuncs.com';//更改成你自己的地址
$policy = '{"expiration": "2125-01-01T12:00:00.000Z","conditions":[{"bucket": "bucketname" },["content-length-range", 0, 104857600]]}';
$policy = base64_encode($policy);
$signature = base64_encode(hash_hmac('sha1', $policy, $access_key, true));//生成认证签名
?>
<!DOCTYPE html>
<html>
    <head>
        <title></title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    </head>
    <body>
        <div>文件上传<...

点击查看剩余70%

我知道答案,我要回答