此函数将字符串转换为 base64 格式编码的字符串。这是一种常用的编码方案,通常用于需要通过互联网作为文本存储或传输的媒体,并使输出对人眼不可读。
base64_encode(string)
参数 | 描述 |
---|---|
string | 要编码的字符串。 |
String(字符串)
var str, file;
str = base64_encode(game_data);
file = file_text_open_write("save.txt");
file_text_write_string(file, str);
file_text_close(file);
上面的代码将存储在 “game_data” 中的字符串转换为 base64 编码的字符串,然后将其存储在外部文本文件中。