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

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

WBOY
WBOYOriginal
2016-06-13 12:09:061189browse

base64_encode可以用于数组吗?如果不行,我一个数组想用base64_encode传送?该怎么办?
base64_encode可以用于数组吗?如果不行,我一个数组想用base64_encode传送?该怎么办?
------解决思路----------------------
不可以!
数组是一个结构体,不同的语言实现的方法是不同的。
所以应转换成大家都能识别的格式化串,才能传送
php 对 php 可用序列化(serialize)
php 对其他语言(含php)可用 json 或 xml
------解决思路----------------------
先用json_encode转成json格式的字符串,然后再base64_encode。
收到后,先base64_decode,然后再json_decode得到数组。

<br />$arr = array(1,2,3,4);<br />$str = base64_encode(json_encode($arr));<br />echo $str;<br />$data =json_decode(base64_decode($str),true);<br />print_r($data);<br />

Statement:
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