Home > Backend Development > PHP Tutorial > base64_encode可以用于数组吗?如果不行,我一个数组想用base64_encode传送?该怎么办?

base64_encode可以用于数组吗?如果不行,我一个数组想用base64_encode传送?该怎么办?

WBOY
Release: 2016-06-23 13:46:24
Original
2028 people have browsed it

base64_encode可以用于数组吗?如果不行,我一个数组想用base64_encode传送?该怎么办?


回复讨论(解决方案)

不可以!
数组是一个结构体,不同的语言实现的方法是不同的。
所以应转换成大家都能识别的格式化串,才能传送
php 对 php 可用序列化(serialize)
php 对其他语言(含php)可用 json 或 xml

最好是序列化数组,用serialize() 函数。

怎样的传送 跨语言吗?

最好是序列化数组,用serialize() 函数。

先用json_encode转成json格式的字符串,然后再base64_encode。
收到后,先base64_decode,然后再json_decode得到数组。

$arr = array(1,2,3,4);$str = base64_encode(json_encode($arr));echo $str;$data =json_decode(base64_decode($str),true);print_r($data);
Copy after login

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template