如何在php上使用base64_encode字节数组?
在java上
new BASE64Encoder().encode(byte[] bytes);
答案 0 :(得分:-3)
使用base64_encode($ stringToEncode)和base64_decode($ stringToDecode)
示例:
$string = 'Test String';
$coded = base64_encode($string);
echo $coded;
// TyByYXRvIHJldSBhIHJvcGEgZG8gcmVpIGRlIFJvbWE=
$original = base64_decode($coded);
echo $original;
// Test String