在线工具

2020-12-19     2

七牛云提示这个: 七牛上传报400:incorrect region, please use xxxx.qiniu.com 存储区域和上传域名的对应关系见https://developer.qiniu.com/kodo/manual/1671/region-endpoint 出现这种情况,如果是使用的第三方插件,需要更新插件或询问第三方开发人员;如果是使用sdk,可以更新成最新的sdk,如

2020-12-19     1

php代码 public function base64_urlSafeEncode($data) { $find = array('+', '/'); $replace = array('-', '_'); return str_replace($find, $replace, base64_encode($data)); } public