JsonSerializable::jsonSerialize()函数是PHP中的内置函数,用于将JSON对象序列化为可以使用json_encode()函数本地化的值。
用法:
mixed JsonSerializable::jsonSerialize( void )
参数:该函数不接受任何参数。
返回值:该函数返回由json_encode()函数序列化的数据。
以下示例程序旨在说明PHP中的JsonSerializable::jsonSerialize()函数:
示例1:
<?php
class vector implements JsonSerializable {
public function __construct(array $arr) {
$this->array = $arr;
}
public function jsonSerialize() {
return $this->array;
}
}
// Declare an array
$arr = [1, 2, 3, 4, 5];
echo("JSON elements:\n");
// Convert the array element into JSON
echo json_encode(new vector($arr), JSON_PRETTY_PRINT);
?>
输出:
JSON elements: [ 1, 2, 3, 4, 5 ]
示例2:
<?php
class vector implements JsonSerializable {
public function __construct(array $arr) {
$this->array = $arr;
}
public function jsonSerialize() {
return $this->array;
}
}
// Declare an array
$arr = [
"x" => "geeks",
"y" => "for",
"z" => "geeks"
];
echo("Convert the array element into JSON:\n");
// Convert the array element into JSON
echo json_encode(new vector($arr), JSON_PRETTY_PRINT);
?>
输出:
Convert the array element into JSON: { "x": "geeks", "y": "for", "z": "geeks" }
参考: https://www.php.net/manual/en/jsonserializable.jsonserialize.php
相关用法
- PHP Ds\Vector jsonSerialize()用法及代码示例
- PHP tan( )用法及代码示例
- p5.js sin()用法及代码示例
- p5.js tan()用法及代码示例
- PHP key()用法及代码示例
- p5.js cos()用法及代码示例
- PHP pos()用法及代码示例
- p5.js log()用法及代码示例
- PHP each()用法及代码示例
- p5.js second()用法及代码示例
- p5.js max()用法及代码示例
- p5.js sq()用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | JsonSerializable jsonSerialize() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。