php 如何 base64编码 byte array
程序员文章站
2022-05-16 10:45:55
...
php 如何 base64编码 byte array
回复内容:
php 如何 base64编码 byte array
$result = base64_encode($data);
猜测了下题主的用意
$data['id'] = 1;
$data['user_name'] = '会编码的熊';
var_dump(base64_encode(serialize($data)));
上一篇: php使用ftp下载文件的简单例子