json_encode()
该函数主要用来将数组和对象,转换为json格式。
复制代码 代码如下:
$arr 2008年的第一场雪= array (‘a’=>’a’,’b’=>’b’,’c’=’c’,’d’=>’d’,’e’=’e’);
echo json_encode($arr);
输出结果:
json只接受utf-8编码的字符,json_encode()的参数必须是utf-8编码。
复制代码 代码如下:
class person
{
public $name;
public $age;
public $height;
function __construct($name,$age,$height)
{
$this->name = $name;
$this->age = $age;
$this->height = $height;
}
}
$obj = new person(“zhangsan”优秀班主任事迹;,20,100);
$foo_json = json_encode($obj);
echo $foo_json;
输出结果:
当类中的属性为私有变量的时候,则不会输出。
json_decode()
该函数用于将json文本转换为相应的php数据结构。
复制代码 代码如下:
$json = ‘{“a”:”hello”,”b”:”world&两个向量平行公式#8221;,”c”:”zhangsan”,”d”:20,”e”:170}’;
var_dump(json_decode($json));
输出结果:
通常情况下,json_decode()总是返回一个php对象。
转成数组的:
复制代码 代码如下:
$json = ‘{“a”:”hello”,”b”:R新中小学生守则21;world”,”c”:”zhangsan”,”d”:20,”e”:170}’;
var_dump(json_decode($jso北京播音主持培训n,ture));
本文发布于:2023-04-06 22:39:03,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/f9754c91bf5f612a97dd0a748dcf2824.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:浅析php中json.doc
本文 PDF 下载地址:浅析php中json.pdf
留言与评论(共有 0 条评论) |