Berserk Docs
Scalar FunctionsEncoding Functions

base64_decode_toguid

Decodes a base64 string to a GUID.

Syntax

base64_decode_toguid(value)

Parameters

Prop

Type

Returns: guid

Examples

Example 1 — Decode a valid base64-encoded GUID

print base64_decode_toguid("3ie+dE4e2Um1ef4LMx02Qg==")
print_0 (guid)
74be27de-1e4e-49d9-b579-fe0b331d3642

Example 2 — Returns empty when the base64 input does not decode to exactly 16 bytes

print base64_decode_toguid("eHY0MTIzNA==")
print_0 (guid)

On this page