2021-03-25 05:43:16 +08:00
|
|
|
---
|
|
|
|
|
title: stdlib / base64decode
|
|
|
|
|
---
|
2023-11-25 09:50:24 -08:00
|
|
|
# base64decode
|
2021-03-25 05:43:16 +08:00
|
|
|
|
|
|
|
|
### NAME
|
|
|
|
|
|
|
|
|
|
base64decode - decodes a string encoded in base64 into a human-readable format
|
|
|
|
|
|
|
|
|
|
### SYNOPSIS
|
|
|
|
|
|
|
|
|
|
string base64decode( string source ) ;
|
|
|
|
|
|
|
|
|
|
### ARGUMENTS
|
|
|
|
|
|
|
|
|
|
source - the source base64-encoded string to decode
|
|
|
|
|
|
|
|
|
|
### DESCRIPTION
|
|
|
|
|
|
|
|
|
|
Decodes and returns a base64-encoded string into human-readable format.
|
|
|
|
|
|
|
|
|
|
### EXAMPLES
|
|
|
|
|
|
|
|
|
|
printf( "%s", base64decode( "Rmx1ZmZPUyBpcyBncmVhdCEhIDop" ) ) ;
|
|
|
|
|
// Result: FluffOS is great!! :)
|
|
|
|
|
|
|
|
|
|
Compare your results with: https://www.base64decode.org/
|