WMPRO, WMMINI FW >= 1.893 WMMEGA FW >= 2.0
Decode a base64-encoded string
$base64: A MIME Base64 encoded string to decode
Decoded string (or int 0 for error)
<? $base64="VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw=="; print(base64_decode($base64)); ?>
The above example will output:
This is an encoded string
base64_encode() - Return the base64-encoded version of a string