base64_encode - Encodes data with MIME base64
base64_encode(data,modified)
The Base64 is an encoding that represents binary-data in an ASCII string format. It translates the data into a 64-characters base representation. It is mostly used for emails via MIME (multipurpose internet mail extensions). This program is used to encode arbitrary octet sequences into a form that satisfies the rules of 7bit. (source: http://en.wikipedia.org/wiki/Base64)
in: res={{base64_encode("some text to be coverted",true)}}. out: res=c29tZSB0ZXh0IHRvIGJlIGNvdmVydGVk.
{{ include("includes/strings.sn") }}
Written by Pusnei Sergey and Caroline Laplante, <sergey@sednove.com>
1.0 2014-09-09 21:24:14 laplante@sednove.com
Edit© 2024 extenso Inc. All rights reserved.