2019-08-23

  1. PHP原生提供json_encode()和json_decode()函数,前者用于编码,后者用于解码
  2. 由于javascript不支持关联数组,所以json_encode()只将索引数组(indexed array)转为数组格式,而将关联数组(associative array)转为对象格式
  3. 类转化为json格式会遗失方法和属性
  4. 如果给定的一个数超出了 integer 的范围,将会被解释为 float 。同样如果执行的运算结果超出了 integer 范围,也会返回 float

你可能感兴趣的:(2019-08-23)