当前位置:首页 > PHP教程 > php高级应用 > 列表

源码分析系列之json_encode()如何转化一个对象

发布:smiling 来源: PHP粉丝网  添加日期:2022-04-23 18:05:58 浏览: 评论:0 

json_encode()如何转化一个对象? 使用 json_encode() 将数组 array 转化成 json 字符串我们都已经很熟悉了。

那么使用 json_encode() 转化一个对象是什么样的过程呢?

初步测试

我们需要新建一个具有多种属性的对象

新建 JsonTest

  1. class JsonTest 
  2.     public const TEST = 'c'
  3.     public $a = 'a'
  4.     public static $b = 'b'
  5.     protected $e = 'e'
  6.     private $d = 'd'
  7.    
  8.     protected function test1() 
  9.     { 
  10.         return __FUNCTION__
  11.     } 
  12.    
  13.     private function test2() 
  14.     { 
  15.         return __FUNCTION__
  16.     } 
  17.    
  18.     public function test3() 
  19.     { 
  20.         return __FUNCTION__
  21.     } 
  22.    
  23.     public static function test4() 
  24.     { 
  25.         return __FUNCTION__
  26.     } 

执行 打印结果

echo json_encode(new JsonTest());

输出

{ "a": "a" }

可以看得出,只有公开非静态的属性被打印出来了,其他东西(常量、私有变量、方法等等)都丢失了。

思考

在实际的应用中,多数情况下,我们的属性都是非公开的,但是我们又想在执行 json_encode() 的时候将它打印出来,该怎么办呢?

JsonSerializable

JsonSerializable 是一个 PHP 的 JSON 序列化接口

官方定义

JSON 序列化接口

(PHP 5 >= 5.4.0, PHP 7)

简介

实现 JsonSerializable 的类可以 在 json_encode() 时定制他们的 JSON 表示法。

接口摘要

  1. JsonSerializable { 
  2.     /* 方法 */ 
  3.     abstract public jsonSerialize ( void ) : mixed 
  4. }<br data-filtered="filtered"

可以看出 php 版本低于 5.4 是没有这个接口的

修改 JsonTest 继续测试

修改 JsonTest 让它实现 JsonSerializable,并为其写一个 jsonSerialize 方法

  1. class JsonTest implements JsonSerializable 
  2.     public const TEST = 'c'
  3.     public $a = 'a'
  4.     public static $b = 'b'
  5.     protected $e = 'e'
  6.     private $d = 'd'
  7.    
  8.     protected function test1() 
  9.     { 
  10.         return __FUNCTION__
  11.     } 
  12.    
  13.     private function test2() 
  14.     { 
  15.         return __FUNCTION__
  16.     } 
  17.    
  18.     public function test3() 
  19.     { 
  20.         return __FUNCTION__
  21.     } 
  22.    
  23.     public static function test4() 
  24.     { 
  25.         return __FUNCTION__
  26.     } 
  27.    
  28.     public function jsonSerialize() 
  29.     { 
  30.         $json = array(); 
  31.         foreach ($this as $key => $value) { 
  32.             $json[$key] = $value
  33.         } 
  34.         return $json
  35.     } 
  36. }<br data-filtered="filtered"

执行 打印结果

echo json_encode(new JsonTest());

输出

{ "a": "a", "e": "e", "d": "d" }

可以看得出,公开属性和私有属性都被打印出来了,方法,常量以及静态变量没有打印出来(这是因为类(class)中静态变量和常量的实现方式是所有对象共享的,并不具体属于某个类)

源码分析

这部分源码较多,我会按照源码中的 function 来一个一个进行分析,注意看代码块中的注释。

里边对应有一些 option 的位运算,我先贴出来每个 option 常量对应的值, << 是左移

  1. /* json_encode() options */ 
  2. #define PHP_JSON_HEX_TAG                    (1<<0) 
  3. #define PHP_JSON_HEX_AMP                    (1<<1) 
  4. #define PHP_JSON_HEX_APOS                   (1<<2) 
  5. #define PHP_JSON_HEX_QUOT                   (1<<3) 
  6. #define PHP_JSON_FORCE_OBJECT               (1<<4) 
  7. #define PHP_JSON_NUMERIC_CHECK              (1<<5) 
  8. #define PHP_JSON_UNESCAPED_SLASHES          (1<<6) 
  9. #define PHP_JSON_PRETTY_PRINT               (1<<7) 
  10. #define PHP_JSON_UNESCAPED_UNICODE          (1<<8) 
  11. #define PHP_JSON_PARTIAL_OUTPUT_ON_ERROR    (1<<9) 
  12. #define PHP_JSON_PRESERVE_ZERO_FRACTION     (1<<10) 
  13. #define PHP_JSON_UNESCAPED_LINE_TERMINATORS (1<<11)<br data-filtered="filtered"

函数本身

  1. PHP_JSON_API int php_json_encode(smart_str *buf, zval *val, int options) /* {{{ */ 
  2.     return php_json_encode_ex(buf, val, options, JSON_G(encode_max_depth)); 
  3. PHP_JSON_API int php_json_encode_ex(smart_str *buf, zval *val, int options, zend_long depth) /* {{{ */ 
  4.     php_json_encoder encoder; 
  5.     int return_code; 
  6.     // 初始化,开辟内存空间 
  7.     php_json_encode_init(&encoder); 
  8.     encoder.max_depth = depth; 
  9.     // 真正用于编码的函数体 
  10.     return_code = php_json_encode_zval(buf, val, options, &encoder); 
  11.     JSON_G(error_code) = encoder.error_code; 
  12.     return return_code; 
  13. /* }}} */<br data-filtered="filtered"

可以看出真正的编码函数是 php_json_encode_zval()

php_json_encode_zval()

smart_str_appendl() 是一个拼接字符串的函数,第三个参数是字符串的长度

buf 就是最终要返回的 json 字符串

  1. int php_json_encode_zval(smart_str *buf, zval *val, int options, php_json_encoder *encoder) /* {{{ */ 
  2. again: 
  3.     switch (Z_TYPE_P(val)) 
  4.     { 
  5.         case IS_NULL
  6.             smart_str_appendl(buf, "null", 4); 
  7.             break
  8.         case IS_TRUE: 
  9.             smart_str_appendl(buf, "true", 4); 
  10.             break
  11.         case IS_FALSE: 
  12.             smart_str_appendl(buf, "false", 5); 
  13.             break
  14.         case IS_LONG
  15.             smart_str_append_long(buf, Z_LVAL_P(val)); 
  16.             break
  17.         case IS_DOUBLE
  18.             if (php_json_is_valid_double(Z_DVAL_P(val))) { 
  19.                 php_json_encode_double(buf, Z_DVAL_P(val), options); 
  20.             } else { 
  21.                 encoder->error_code = PHP_JSON_ERROR_INF_OR_NAN; 
  22.                 smart_str_appendc(buf, '0'); 
  23.             } 
  24.             break
  25.         case IS_STRING
  26.             return php_json_escape_string(buf, Z_STRVAL_P(val), Z_STRLEN_P(val), options, encoder); 
  27.         case IS_OBJECT
  28.             // 如果对象实现了JsonSerializable,就将对象中的jsonSerialize()返回的结果进行编码 
  29.             if (instanceof_function(Z_OBJCE_P(val), php_json_serializable_ce)) { 
  30.                 return php_json_encode_serializable_object(buf, val, options, encoder); 
  31.             } 
  32.             // 如果对象没有实现了JsonSerializable,就执行下边的这个php_json_encode_array() 
  33.             /* fallthrough -- Non-serializable object */ 
  34.         case IS_ARRAY
  35.             // 解析数组 
  36.             return php_json_encode_array(buf, val, options, encoder); 
  37.         case IS_REFERENCE: 
  38.             //忽略引用 
  39.             val = Z_REFVAL_P(val); 
  40.             goto again; 
  41.         default
  42.             encoder->error_code = PHP_JSON_ERROR_UNSUPPORTED_TYPE; 
  43.             if (options & PHP_JSON_PARTIAL_OUTPUT_ON_ERROR) { 
  44.                 smart_str_appendl(buf, "null", 4); 
  45.             } 
  46.             return FAILURE; 
  47.     } 
  48.     return SUCCESS; 
  49. /* }}} */ 

php_json_encode_array()

这个函数递归编码数组及没有实现JsonSerializable()的对象(只编码对象的公开属性)。

  1. static int php_json_encode_array(smart_str *buf, zval *val, int options, php_json_encoder *encoder) /* {{{ */ 
  2.     int i, r, need_comma = 0; 
  3.     HashTable *myht; 
  4.     // r用来表示输出 `json` 的结构类型是数组还是对象 
  5.     // 只有自然排序的数组(['a','b','c'])才有可能被输出为数组(考虑option可能为JSON_FORCE_OBJECT) 
  6.     if (Z_TYPE_P(val) == IS_ARRAY) { 
  7.         // 如果是数组 
  8.         myht = Z_ARRVAL_P(val); 
  9.         // options中有JSON_FORCE_OBJECT 就强制输出对象,否则就判断数组是不是自然数组 
  10.         r = (options & PHP_JSON_FORCE_OBJECT) ? PHP_JSON_OUTPUT_OBJECT : php_json_determine_array_type(val); 
  11.     } else { 
  12.         myht = Z_OBJPROP_P(val); 
  13.         //对象就是输出对象 
  14.         r = PHP_JSON_OUTPUT_OBJECT; 
  15.     } 
  16.     if (myht && ZEND_HASH_GET_APPLY_COUNT(myht) > 0) { 
  17.         encoder->error_code = PHP_JSON_ERROR_RECURSION; 
  18.         smart_str_appendl(buf, "null", 4); 
  19.         return FAILURE; 
  20.     } 
  21.     PHP_JSON_HASH_APPLY_PROTECTION_INC(myht); 
  22.     if (r == PHP_JSON_OUTPUT_ARRAY) { 
  23.         //输出为数组 就用 [ 做开头 
  24.         smart_str_appendc(buf, '['); 
  25.     } else { 
  26.         //输出为对象 就用 { 做开头 
  27.         smart_str_appendc(buf, '{'); 
  28.     } 
  29.     // 当前递归的深度 
  30.     ++encoder->depth; 
  31.     // zend_hash_num_elements 返回哈希表中元素的数量 
  32.     i = myht ? zend_hash_num_elements(myht) : 0; 
  33.     if (i > 0) { 
  34.         zend_string *key; 
  35.         zval *data; 
  36.         zend_ulong index; 
  37.         //遍历当前维度的数组 如果当前元素不是数组 
  38.         ZEND_HASH_FOREACH_KEY_VAL_IND(myht, index, key, data) { 
  39.             // ↓ begin 从这里开始都是判断key怎么处理以及元素末尾怎么处理  ↓↓↓↓ 
  40.             if (r == PHP_JSON_OUTPUT_ARRAY) { 
  41.                 //need_comma初始值是0 
  42.                 if (need_comma) { 
  43.                     smart_str_appendc(buf, ','); 
  44.                 } else { 
  45.                     need_comma = 1; 
  46.                 } 
  47.                 //这两个方法是option中有JSON_PRETTY_PRINT的时候才会执行的 
  48.                 php_json_pretty_print_char(buf, options, '\n'); 
  49.                 php_json_pretty_print_indent(buf, options, encoder); 
  50.             } else if (r == PHP_JSON_OUTPUT_OBJECT) { 
  51.                 if (key) { 
  52.                     if (ZSTR_VAL(key)[0] == '\0' && ZSTR_LEN(key) > 0 && Z_TYPE_P(val) == IS_OBJECT) { 
  53.                         //跳过受保护的属性和私有属性 
  54.                         /* Skip protected and private members. */ 
  55.                         continue
  56.                     } 
  57.                     //need_comma初始值是0 
  58.                     if (need_comma) { 
  59.                         smart_str_appendc(buf, ','); 
  60.                     } else { 
  61.                         need_comma = 1; 
  62.                     } 
  63.                     php_json_pretty_print_char(buf, options, '\n'); 
  64.                     php_json_pretty_print_indent(buf, options, encoder); 
  65.                     // 处理字符串属性的key(例如判断key中的中文或者特殊字符的处理) 
  66.                     if (php_json_escape_string(buf, ZSTR_VAL(key), ZSTR_LEN(key), 
  67.                                 options & ~PHP_JSON_NUMERIC_CHECK, encoder) == FAILURE && 
  68.                             (options & PHP_JSON_PARTIAL_OUTPUT_ON_ERROR) && 
  69.                             buf->s) { 
  70.                         ZSTR_LEN(buf->s) -= 4; 
  71.                         smart_str_appendl(buf, "\"\"", 2); 
  72.                     } 
  73.                 } else { 
  74.                     if (need_comma) { 
  75.                         smart_str_appendc(buf, ','); 
  76.                     } else { 
  77.                         need_comma = 1; 
  78.                     } 
  79.                     php_json_pretty_print_char(buf, options, '\n'); 
  80.                     php_json_pretty_print_indent(buf, options, encoder); 
  81.                     smart_str_appendc(buf, '"'); 
  82.                     smart_str_append_long(buf, (zend_long) index); 
  83.                     smart_str_appendc(buf, '"'); 
  84.                 } 
  85.                 smart_str_appendc(buf, ':'); 
  86.                 php_json_pretty_print_char(buf, options, ' '); 
  87.             } 
  88.             // ↑ end 从这里之前都是判断key怎么处理以及元素末尾怎么处理  ↑↑↑↑ 
  89.             //继续调用对普通元素编码的 php_json_encode_zval() (实现数组和对象的递归闭环) 
  90.             if (php_json_encode_zval(buf, data, options, encoder) == FAILURE && 
  91.                     !(options & PHP_JSON_PARTIAL_OUTPUT_ON_ERROR)) { 
  92.                 PHP_JSON_HASH_APPLY_PROTECTION_DEC(myht); 
  93.                 return FAILURE; 
  94.             } 
  95.         } ZEND_HASH_FOREACH_END(); 
  96.     } 
  97.     PHP_JSON_HASH_APPLY_PROTECTION_DEC(myht); 
  98.     // 当前深度是否到达了设定的最大深度(默认512) 
  99.     if (encoder->depth > encoder->max_depth) { 
  100.         encoder->error_code = PHP_JSON_ERROR_DEPTH; 
  101.         if (!(options & PHP_JSON_PARTIAL_OUTPUT_ON_ERROR)) { 
  102.             return FAILURE; 
  103.         } 
  104.     } 
  105.     --encoder->depth; 
  106.     /* Only keep closing bracket on same line for empty arrays/objects */ 
  107.     if (need_comma) { 
  108.         php_json_pretty_print_char(buf, options, '\n'); 
  109.         php_json_pretty_print_indent(buf, options, encoder); 
  110.     } 
  111.     if (r == PHP_JSON_OUTPUT_ARRAY) { 
  112.         smart_str_appendc(buf, ']'); 
  113.     } else { 
  114.         smart_str_appendc(buf, '}'); 
  115.     } 
  116.     return SUCCESS; 
  117. /* }}} */ 

分析

看了源码,我得出了一些结论。

只有 null,布尔值,浮点数,整数,字符串才会被直接编码

对象要么实现 JsonSerializable 并定义一个 jsonSerialize() ,要么就被当成一个数组,只会被处理公开非静态属性

json_encode() 并不会直接编码数组和对象,而是会递归遍历出所有可遍历的元素,并处理 key

源码中 php_json_encode_zval() 和 php_json_encode_array() 的相互调用,实现了数组和对象遍历的闭环

引用不会被编码

另外,关于 json_encode() 的 options ,我觉得这里处理的技巧非常有趣,巧妙利用位运算来区别多个常量,有兴趣的慢慢看看研究研究。(提示,将 options 每个常量转成二进制来看,json_encode() 接受多个 option 是按位或 | )

Demo

  1. >>> $a = [1,2,3,4]; 
  2. => [ 
  3.      1, 
  4.      2, 
  5.      3, 
  6.      4, 
  7.    ] 
  8. >>> json_encode($a); 
  9. => "[1,2,3,4]" 
  10. >>> json_encode((object)$a); 
  11. => "{"0":1,"1":2,"2":3,"3":4}" 
  12. >>> json_encode($a,JSON_FORCE_OBJECT); 
  13. => "{"0":1,"1":2,"2":3,"3":4}" 
  14. >>> json_encode($a,JSON_FORCE_OBJECT|JSON_PRETTY_PRINT); 
  15. => ""
  16.    {\n 
  17.        "0": 1,\n 
  18.        "1": 2,\n 
  19.        "2": 3,\n 
  20.        "3": 4\n 
  21.    } 
  22.    ""
  23.  
  24. $arr = array
  25.     '0'=>'a','1'=>'b','2'=>'c','3'=>'d' 
  26. ); 
  27. echo json_encode($arr); 

但是结果是

["a","b","c","d"]

需求是要返回JSON对象,是这样似的

  1. {"0":"a","1":"b","2":"c","3":"d"
  2.  
  3. You can do it,you nee add 
  4.  
  5. $arr = array
  6.     '0'=>'a','1'=>'b','2'=>'c','3'=>'d' 
  7. ); 
  8. echo json_encode((object)$arr); 

输出结果

{"0":"a","1":"b","2":"c","3":"d"}

Tags: json_encode

分享到: