PHP擴(kuò)展之JavaScript對(duì)象符號(hào)(JSON)
自 PHP 5.2.0 起,JSON 擴(kuò)展默認(rèn)內(nèi)置并編譯進(jìn)了 PHP。
JSON 序列化接口JsonSerializable實(shí)現(xiàn)?JsonSerializable?的類(lèi)可以 在?json_encode()?時(shí)定制他們的 JSON 表示法。
JsonSerializable::jsonSerialize?—?指定需要被序列化成 JSON 的數(shù)據(jù)
Example #1 ?返回一個(gè)數(shù)組
<?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);?>
以上例程會(huì)輸出:
[ 1, 2, 3]
Example #2 ?返回了一個(gè)關(guān)聯(lián)數(shù)組
<?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);?>
以上例程會(huì)輸出:
{ 'foo': 'bar', 'quux': 'baz'}
Example #3 ?返回一個(gè)整型數(shù)字
<?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);?>
以上例程會(huì)輸出:
1
Example #4 返回一個(gè)字符串
<?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);?>
以上例程會(huì)輸出:
'Hello!'JSON 函數(shù)json_decode?— 對(duì) JSON 格式的字符串進(jìn)行編碼json_encode?— 對(duì)變量進(jìn)行 JSON 編碼json_last_error_msg?— Returns the error string of the last json_encode() or json_decode() calljson_last_error?— 返回最后發(fā)生的錯(cuò)誤
相關(guān)文章:
1. Java Media Framework 基礎(chǔ)教程2. 解決vue頁(yè)面刷新,數(shù)據(jù)丟失的問(wèn)題3. Python 忽略文件名編碼的方法4. springboot項(xiàng)目整合druid數(shù)據(jù)庫(kù)連接池的實(shí)現(xiàn)5. JavaEE SpringMyBatis是什么? 它和Hibernate的區(qū)別及如何配置MyBatis6. python 讀txt文件,按‘,’分割每行數(shù)據(jù)操作7. android studio實(shí)現(xiàn)簡(jiǎn)單的計(jì)算器(無(wú)bug)8. 在Mac中配置Python虛擬環(huán)境過(guò)程解析9. Python趣味挑戰(zhàn)之用pygame實(shí)現(xiàn)簡(jiǎn)單的金幣旋轉(zhuǎn)效果10. Python中的min及返回最小值索引的操作
