PHP » PYTHON |
login |
register |
about
|
PYTHON base64_encode
is this article helpful?
|
Python replacement for PHP's base64_encode
[
edit
| history
]
#Python 2.x: result = data.encode('base64') #Python 3.x: import base64 result = base64.encodebytes(data.encode('utf-8')).strip() base64_encode(PHP 4, PHP 5) base64_encode — Encodes data with MIME base64 Description
string base64_encode
( string $data
)
Encodes the given data with base64. This encoding is designed to make binary data survive transport through transport layers that are not 8-bit clean, such as mail bodies. Base64-encoded data takes about 33% more space than the original data. Parameters
Return ValuesThe encoded data, as a string. Examples
Example #1 base64_encode() example
<?php The above example will output: VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw==
See Also
|
more
Recently updated
more
Most requested
more
Last requests
|