“LlIntegerToBase64”的版本间的差异
(创建页面,内容为“{{LSL Header|ml=*}}{{LSLC|Keywords}}{{LSLC|Flow Control}}{{LSLC|}} {{函数详情 |函数名 = Function: string llIntegerToBase64( integer number ); |参数= 参…”) |
(没有差异)
|
2020年8月20日 (四) 11:56的最新版本
首页 | 函数 | 事件 | 类型 | 操作符 | 常数 | Flow Control | Script Library | Categorized Library | Tutorials |
函数名 |
---|
Function: string llIntegerToBase64( integer number ); |
参数:integer number |
返回值:返回一个 base64大端编码的字符串 |
注意事项 |
---|
无 |
示例 |
---|
示例一
string ASCII7ToString(integer letter) { if(letter >= 0x80 || letter < 0) return "";//Not valid ascii7 character return llBase64ToString(llIntegerToBase64(letter << 24)); } |
相关函数 |
---|
llBaseToInteger |
相关事件 |
---|
无 |