千家信息网

Laravel源码分析:Response

发表于:2024-12-12 作者:千家信息网编辑
千家信息网最后更新 2024年12月12日,/** * Determine(判断) if the given content should be turned into JSON. * * @param mixed
千家信息网最后更新 2024年12月12日Laravel源码分析:Response
/**     * Determine(判断) if the given content should be turned into JSON.     *     * @param  mixed  $content     * @return bool     */    protected function shouldBeJson($content)    {        return $content instanceof Arrayable ||               $content instanceof Jsonable ||               $content instanceof ArrayObject ||               $content instanceof JsonSerializable ||               is_array($content);    }
Arrayable

Jsonable

ArrayObject

JsonSerializable

TODO

0