php中JSON的使用方法
从5.2版本开始,PHP原生提供json_encode()和json_decode()函数,前者用于编码,后者用于解码。
json_encode()
该函数主要用来将数组和对象,转换为json格式。
$arr=array('a'=>'a','b'=>'b','c'='c','d'=>'d','e'='e');
echojson_encode($arr);
输出结果:
json只接受utf-8编码的字符,json_encode()的参数必须是utf-8编码。
classperson
{
public$name;
public$age;
public$height;
function__construct($name,$age,$height)
{
$this->name=$name;
$this->age=$age;
$this->height=$height;
}
}
$obj=newperson("zhangsan",20,100);
$foo_json=json_encode($obj);
echo$foo_json;
输出结果:
当类中的属性为私有变量的时候,则不会输出。
json_decode()
该函数用于将json文本转换为相应的PHP数据结构。
$json='{"a":"hello","b":"world","c":"zhangsan","d":20,"e":170}';
var_dump(json_decode($json));
输出结果:
通常情况下,json_decode()总是返回一个PHP对象。
转成数组的:
$json='{"a":"hello","b":"world","c":"zhangsan","d":20,"e":170}';
var_dump(json_decode($json,ture));
以上所述就是本文的全部内容了,希望大家能够喜欢。
热门推荐
10 诗词送行祝福语大全简短
11 新房开工吉日祝福语简短
12 50多岁生日简短祝福语
13 安徽疫情祝福语简短英语
14 农民朋友发财祝福语简短
15 对生活祝福语简短精辟
16 搬家词简短祝福语朋友
17 女神结婚快乐祝福语简短
18 文学短句祝福语大全简短