函数名
decodeBase64(str)
函数介绍
方法名称:base64字符串解码参数说明:str:待解码的字符串
返回值:base64解码结果
函数例子
local ret = encodeBase64("欢迎使用一键玩PC版")print("encode:",ret)local dec = decodeBase64(ret)print("decode:",dec)