W3cubDocs

/Laravel 8

JsonResponse

class JsonResponse extends JsonResponse (View source)

Traits

ResponseTrait
Macroable

Properties

mixed $original The original content of the response. from ResponseTrait
Throwable|null $exception The exception that triggered the error response (if applicable). from ResponseTrait
static protected array $macros The registered string macros. from Macroable

Methods

int status()

Get the status code for the response.

from ResponseTrait
string content()

Get the content of the response.

from ResponseTrait
mixed getOriginalContent()

Get the original response content.

from ResponseTrait
$this header(string $key, array|string $values, bool $replace = true)

Set a header on the Response.

from ResponseTrait
$this withHeaders(HeaderBag|array $headers)

Add an array of headers to the response.

from ResponseTrait
$this cookie(Cookie|mixed $cookie)

Add a cookie to the response.

from ResponseTrait
$this withCookie(Cookie|mixed $cookie)

Add a cookie to the response.

from ResponseTrait
$this withoutCookie(Cookie|mixed $cookie, string|null $path = null, string|null $domain = null)

Expire a cookie when sending the response.

from ResponseTrait
string|null getCallback()

Get the callback of the response.

from ResponseTrait
$this withException(Throwable $e)

Set the exception to attach to the response.

from ResponseTrait
void throwResponse()

Throws the response in a HttpResponseException instance.

from ResponseTrait
static void macro(string $name, object|callable $macro)

Register a custom macro.

from Macroable
static void mixin(object $mixin, bool $replace = true)

Mix another object into the class.

from Macroable
static bool hasMacro(string $name)

Checks if macro is registered.

from Macroable
static mixed __callStatic(string $method, array $parameters)

Dynamically handle calls to the class.

from Macroable
mixed __call(string $method, array $parameters)

Dynamically handle calls to the class.

from Macroable
void __construct(mixed $data = null, int $status = 200, array $headers = [], int $options = 0)

Constructor.

$this withCallback(string|null $callback = null)

Sets the JSONP callback.

mixed getData(bool $assoc = false, int $depth = 512)

Get the json_decoded data from the response.

setData($data = [])

{@inheritdoc}

bool hasValidJson(int $jsonError)

Determine if an error occurred during JSON encoding.

setEncodingOptions($options)

{@inheritdoc}

bool hasEncodingOption(int $option)

Determine if a JSON encoding option is set.

Details

int status()

Get the status code for the response.

Return Value

int

string content()

Get the content of the response.

Return Value

string

mixed getOriginalContent()

Get the original response content.

Return Value

mixed

$this header(string $key, array|string $values, bool $replace = true)

Set a header on the Response.

Parameters

string $key
array|string $values
bool $replace

Return Value

$this

$this withHeaders(HeaderBag|array $headers)

Add an array of headers to the response.

Parameters

HeaderBag|array $headers

Return Value

$this

Add a cookie to the response.

Parameters

Cookie|mixed $cookie

Return Value

$this

$this withCookie(Cookie|mixed $cookie)

Add a cookie to the response.

Parameters

Cookie|mixed $cookie

Return Value

$this

$this withoutCookie(Cookie|mixed $cookie, string|null $path = null, string|null $domain = null)

Expire a cookie when sending the response.

Parameters

Cookie|mixed $cookie
string|null $path
string|null $domain

Return Value

$this

string|null getCallback()

Get the callback of the response.

Return Value

string|null

$this withException(Throwable $e)

Set the exception to attach to the response.

Parameters

Throwable $e

Return Value

$this

void throwResponse()

Throws the response in a HttpResponseException instance.

Return Value

void

Exceptions

HttpResponseException

static void macro(string $name, object|callable $macro)

Register a custom macro.

Parameters

string $name
object|callable $macro

Return Value

void

static void mixin(object $mixin, bool $replace = true)

Mix another object into the class.

Parameters

object $mixin
bool $replace

Return Value

void

Exceptions

ReflectionException

static bool hasMacro(string $name)

Checks if macro is registered.

Parameters

string $name

Return Value

bool

static mixed __callStatic(string $method, array $parameters)

Dynamically handle calls to the class.

Parameters

string $method
array $parameters

Return Value

mixed

Exceptions

BadMethodCallException

mixed __call(string $method, array $parameters)

Dynamically handle calls to the class.

Parameters

string $method
array $parameters

Return Value

mixed

Exceptions

BadMethodCallException

void __construct(mixed $data = null, int $status = 200, array $headers = [], int $options = 0)

Constructor.

Parameters

mixed $data
int $status
array $headers
int $options

Return Value

void

$this withCallback(string|null $callback = null)

Sets the JSONP callback.

Parameters

string|null $callback

Return Value

$this

mixed getData(bool $assoc = false, int $depth = 512)

Get the json_decoded data from the response.

Parameters

bool $assoc
int $depth

Return Value

mixed

setData($data = [])

{@inheritdoc}

Parameters

$data

protected bool hasValidJson(int $jsonError)

Determine if an error occurred during JSON encoding.

Parameters

int $jsonError

Return Value

bool

setEncodingOptions($options)

{@inheritdoc}

Parameters

$options

bool hasEncodingOption(int $option)

Determine if a JSON encoding option is set.

Parameters

int $option

Return Value

bool

© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/8.x/Illuminate/Http/JsonResponse.html