function gmt_iso8601($time)

{

$dtStr = date("c", $time);

$mydatetime = new DateTime($dtStr);

$expiration = $mydatetime->format(DateTime::ISO8601);

$pos = strpos($expiration, '+');

$expiration = substr($expiration, 0, $pos);

return $expiration . "Z";

}

$id = 'LTAIyyKGg9hNivra'; // 请填写您的AccessKeyId。

$key = 'RnLX0vETxwtNtj2gCDneTyerwHALo0'; // 请填写您的AccessKeySecret。

// $host的格式为 bucketname.endpoint,请替换为您的真实信息。

$host = 'https://res-beta.ihercules.cn';

$dir = 'user-dir-prefix/'; // 用户上传文件时指定的前缀。

$now = time();

$expire = 30; //设置该policy超时时间是10s. 即这个policy过了这个有效时间,将不能访问。

$end = $now + $expire;

$expiration = gmt_iso8601($end);

//$expiration = '2020-01-01T12:00:00.000Z';

//最大文件大小.用户可以自己设置

$condition = array(0 => 'content-length-range', 1 => 0, 2 => 1048576000);

$conditions[] = $condition;

// 表示用户上传的数据,必须是以$dir开始,不然上传会失败,这一步不是必须项,只是为了安全起见,防止用户通过policy上传到别人的目录。

//$start = array(0 => 'starts-with', 1 => '$key', 2 => $dir);

//$conditions[] = $start;

$arr = array('expiration' => $expiration, 'conditions' => $conditions);

$policy = json_encode($arr);

$base64_policy = base64_encode($policy);

$string_to_sign = $base64_policy;

$signature = base64_encode(hash_hmac('sha1', $string_to_sign, $key, true));

$response = array();

$response['accessid'] = $id;

$response['host'] = $host;

$response['policy'] = $base64_policy;

$response['signature'] = $signature;

$response['expire'] = $end;

$response['dir'] = $dir; // 这个参数是设置用户上传文件时指定的前缀。

$response['filename'] = $_POST['filename'];

echo json_encode($response);

一键复制

编辑

Web IDE

原始数据

按行查看

历史

Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐