开发者社区> 问答> 正文

怎么把php字符串转换成json格式?

这是字符串

{"id":"shunfeng","name":"顺丰快递","order":"023499317996","message":"","errcode":"0000","status":4,"data":[{"time":"2015-07-30 19:26:29","content":"顺丰速运 已收取快件"},{"time":"2015-07-30 21:08:57","content":"快件正转运至下一站"},{"time":"2015-07-30 21:46:10","content":"快件到达 【北京紫竹院集散中心】"},{"time":"2015-07-30 21:53:26","content":"快件正转运至下一站"},{"time":"2015-07-31 00:02:41","content":"快件到达 【北京首都机场集散中心2】"},{"time":"2015-07-31 00:06:18","content":"快件正转运至 【石家庄高开集散中心】"},{"time":"2015-07-31 07:50:01","content":"快件到达 【石家庄高开集散中心】"},{"time":"2015-07-31 09:21:55","content":"快件正转运至 【石家庄红旗服务点】"},{"time":"2015-07-31 11:06:08","content":"快件到达 【石家庄红旗服务点】"},{"time":"2015-07-31 11:13:46","content":"正在派送途中,请您准备签收(派件人:宋超,电话:13831156512)"},{"time":"2015-07-31 11:39:24","content":"已签收,感谢使用顺丰,期待再次为您服务"},{"time":"2015-07-31 11:39:24","content":"在官网"运单资料&签收图",可查看签收人信息"}]}

展开
收起
小旋风柴进 2016-03-09 10:14:02 17347 0
1 条回答
写回答
取消 提交回答
  • 例子,你参考一下
    一、json_encode()

     <?php
     $arr = array ('a'=>1,'b'=>2,'c'=>3,'d'=>4,'e'=>5);
     echo json_encode($arr);
     ?>

    输出

     {"a":1,"b":2,"c":3,"d":4,"e":5}

    再看一个对象转换的例子:

     $obj->body           = 'another post';
     $obj->id             = 21;
     $obj->approved       = true;
     $obj->favorite_count = 1;
     $obj->status         = NULL;
     echo json_encode($obj);

    输出

     {
       "body":"another post",
       "id":21,
       "approved":true,
       "favorite_count":1,
       "status":null
     }

    由于json只接受utf-8编码的字符,所以json_encode()的参数必须是utf-8编码,否则会得到空字符或者null。当中文使用GB2312编码,或者外文使用ISO-8859-1编码的时候,这一点要特别注意。

    二、索引数组和关联数组

    PHP支持两种数组,一种是只保存"值"(value)的索引数组(indexed array),另一种是保存"名值对"(name/value)的关联数组(associative array)。

    由于javascript不支持关联数组,所以json_encode()只将索引数组(indexed array)转为数组格式,而将关联数组(associative array)转为对象格式。

    比如,现在有一个索引数组

     $arr = Array('one', 'two', 'three');
     echo json_encode($arr);

    输出

     ["one","two","three"]
    $arr = Array('1'=>'one', '2'=>'two', '3'=>'three');
     echo json_encode($arr);

    输出变为

     {"1":"one","2":"two","3":"three"}

    注意,数据格式从"[]"(数组)变成了"{}"(对象)。

    如果你需要将"索引数组"强制转化成"对象",可以这样写

    json_encode( (object)$arr );

    或者

    json_encode ( $arr, JSON_FORCE_OBJECT );

    三、类(class)的转换

    下面是一个PHP的类:

    class Foo {
      const     ERROR_CODE = '404';
      public    $public_ex = 'this is public';
      private   $private_ex = 'this is private!';
      protected $protected_ex = 'this should be protected';
      public function getErrorCode() {
        return self::ERROR_CODE;
      }
     }

    现在,对这个类的实例进行json转换:

     $foo = new Foo;
     $foo_json = json_encode($foo);
     echo $foo_json;

    输出结果是

     {"public_ex":"this is public"}

    可以看到,除了公开变量(public),其他东西(常量、私有变量、方法等等)都遗失了。

    四、json_decode()

    该函数用于将json文本转换为相应的PHP数据结构。下面是一个例子:

     $json = '{"foo": 12345}';
     $obj = json_decode($json);
     print $obj->{'foo'}; // 12345

    通常情况下,json_decode()总是返回一个PHP对象,而不是数组。比如:

     $json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
     var_dump(json_decode($json));

    结果就是生成一个PHP对象:

    object(stdClass)#1 (5) {
      
      ["a"] => int(1)
      ["b"] => int(2)
      ["c"] => int(3)
      ["d"] => int(4)
      ["e"] => int(5)
      
     }

    如果想要强制生成PHP关联数组,json_decode()需要加一个参数true:

     $json = '{"a":1,"b":2,"c":3,"d":4,"e":5}'; 
      var_dump(json_decode($json,true));

    结果就生成了一个关联数组:

    array(5) {
        ["a"] => int(1)
        ["b"] => int(2)
        ["c"] => int(3)
        ["d"] => int(4)
        ["e"] => int(5)
     }
    

    五、json_decode()的常见错误

    下面三种json写法都是错的,你能看出错在哪里吗?

     $bad_json = "{ 'bar': 'baz' }";
     $bad_json = '{ bar: "baz" }';
     $bad_json = '{ "bar": "baz", }';

    对这三个字符串执行json_decode()都将返回null,并且报错。

    第一个的错误是,json的分隔符(delimiter)只允许使用双引号,不能使用单引号。第二个的错误是,json名值对的"名"(冒号左边的部分),任何情况下都必须使用双引号。第三个的错误是,最后一个值之后不能添加逗号(trailing comma)。

    另外,json只能用来表示对象(object)和数组(array),如果对一个字符串或数值使用json_decode(),将会返回null。
    ar_dump(json_decode("Hello World")); //null

    2019-07-17 18:55:28
    赞同 展开评论 打赏
问答分类:
问答地址:
相关产品:
问答排行榜
最热
最新

相关电子书

更多
PHP 2017.北京 全球开发者大会——高可用的PHP 立即下载
PHP安全开发:从白帽角度做安全 立即下载
复杂PHP系统性能瓶颈排查及优化 立即下载