自 PHP 5.2.0 起,JSON 扩展默认内置并编译进了 PHP。
JSON 序列化接口JsonSerializable
实现 JsonSerializable 的类可以 在 json_encode() 时定制他们的 JSON 表示法。
JsonSerializable::jsonSerialize — 指定需要被序列化成 JSON 的数据
Example #1 返回一个数组
<?php
class ArrayValue implements JsonSerializable {
public function __construct(array $array) {
$this->array = $array;
}
public function jsonSerialize() {
return $this->array;
}
}
$array = [1, 2, 3];
echo json_encode(new ArrayValue($array), JSON_PRETTY_PRINT);
?>
以上例程会输出:
[
1,
2,
3
]
Example #2 返回了一个关联数组
<?php
class ArrayValue implements JsonSerializable {
public function __construct(array $array) {
$this->array = $array;
}
public function jsonSerialize() {
return $this->array;
}
}
$array = ['foo' => 'bar', 'quux' => 'baz'];
echo json_encode(new ArrayValue($array), JSON_PRETTY_PRINT);
?>
以上例程会输出:
{
"foo": "bar",
"quux": "baz"
}
Example #3 返回一个整型数字
<?php
class IntegerValue implements JsonSerializable {
public function __construct($number) {
$this->number = (integer) $number;
}
public function jsonSerialize() {
return $this->number;
}
}
echo json_encode(new IntegerValue(1), JSON_PRETTY_PRINT);
?>
以上例程会输出:
1
Example #4 返回一个字符串
<?php
class StringValue implements JsonSerializable {
public function __construct($string) {
$this->string = (string) $string;
}
public function jsonSerialize() {
return $this->string;
}
}
echo json_encode(new StringValue('Hello!'), JSON_PRETTY_PRINT);
?>
以上例程会输出:
"Hello!"
JSON 函数
- json_decode — 对 JSON 格式的字符串进行编码
- json_encode — 对变量进行 JSON 编码
- json_last_error_msg — Returns the error string of the last json_encode() or json_decode() call
- json_last_error — 返回最后发生的错误
扫码二维码 获取免费视频学习资料

- 本文固定链接: http://www.phpxs.com/post/1086/
- 转载请注明:转载必须在正文中标注并保留原文链接
- 扫码: 扫上方二维码获取免费视频资料
查 看2022高级编程视频教程免费获取