场景:客户端发起向php服务器端请求上传token
php端在使用Qiniu_RS_PutPolicy类的时候,将重命名后的文件名赋给savekey
public function __construct($scope,$savekey)
{
$this->Scope = $scope;
$this->SaveKey = $savekey;
}
这样的话,客户端上传的图片到七牛空间的时候是不是就会改名为与savekey一样的名字
是的。saveKey 的作用就是这个。