php - toJson方法和jsonSerialize方法的区别?
大家讲道理
大家讲道理 2017-05-16 13:00:38
0
4
715

我在看 Illuminate\Support\MessageBag类方法时,类是这样的:

use JsonSerializable;
use Illuminate\Contracts\Support\Jsonable;
....

class MessageBag implements Jsonable, JsonSerializable...

/*
 * Convert the object to its JSON representation.
 */
public function toJson ($options = 0) {
    return json_encode($this->jsonSerialize(), $options);
}

/*
 *Convert the object into something JSON serializable.
 */
public function jsonSerialize() {
    return $this->toArray();
}

请教各位前辈,toJson方法和jsonSerialize方法的区别是什么呢?什么时候会隐式调用呢?

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

全部回复(4)
Peter_Zhu

参照文档:http://php.net/manual/zh/json...
上代码:

class j implements JsonSerializable{
    public function jsonSerialize(){
        return "Hello world!";
    }
}
echo json_encode(new j());

JsonSerializable本身专门为json_encode序列化服务的,而toJson只是laravel的Jsonable的方法。

也就是说,你使用json_encode对这个对象序列化的时候,会去调用jsonSerialize方法。

而你的toJson,一般只是将json_encode函数封装一下而已,只是为了语义化。

phpcn_u1582

这样?

 public function jsonSerialize()
    {
        return $this->toArray();
    }

public function toJson($options = 0)
    {
        return json_encode($this->jsonSerialize(), $options);
    }    
Ty80

我不怎么了解,帮你搜了个:
http://www.cnblogs.com/gniele...

phpcn_u1582

谢邀!

因为我没用过larval,你可以贴出toJson方法和jsonSerialize方法的具体代码么

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!