GitHubContribute in GitHub: Edit online

base64_decode_toarray()

Decodes a base64 string to an array of long values.

Syntax

base64_decode_toarray(String)

Arguments

  • String: Input base64 string to be decoded from base64 to an array of long values.

Returns

Returns an array of long values decoded from a base64 string.

Example

print Quine=base64_decode_toarray("S3VzdG8=")  
// 'K', 'u', 's', 't', 'o'

Results

Quine
[75,117,115,116,111]