Json

Extends Input

Joomla! Input JSON Class

deprecated

This class decodes a JSON string from the raw request data and makes it available via the standard JInput interface.

since

3.0.1

deprecated

5.0 Use Joomla\Input\Json instead

package

Joomla CMS

Methods

__construct

Constructor.

__construct(array source = null, array options = array()) : mixed
inherited deprecated
since

1.7.0

deprecated

5.0 Use Joomla\Input\Input instead

Arguments

source

arraySource data (Optional, default is $_REQUEST)

options

arrayArray of configuration parameters (Optional)

Response

mixed

__get

Magic method to get an input object

__get(mixed name) : \Joomla\Input\Input
inherited deprecated
since

1.7.0

deprecated

5.0 Use Joomla\Input\Input instead

Arguments

name

mixedName of the input object to retrieve.

Response

\Joomla\Input\InputThe request input object

getArray

Gets an array of values from the request.

getArray(array vars = array(), mixed datasource = null, string defaultFilter = 'unknown') : mixed
inherited deprecated
since

1.7.0

deprecated

5.0 Use Joomla\Input\Input instead

Arguments

vars

arrayAssociative array of keys and filter types to apply. If empty and datasource is null, all the input data will be returned but filtered using the filter given by the parameter defaultFilter in InputFilter::clean.

datasource

mixedArray to retrieve data from, or null.

defaultFilter

stringDefault filter used in InputFilter::clean if vars is empty and datasource is null. If 'unknown', the default case is used in InputFilter::clean.

Response

mixedThe filtered input data.

getArrayRecursive

Gets an array of values from the request.

getArrayRecursive(array vars = array(), mixed datasource = null, string defaultFilter = 'unknown', bool recursion = false) : mixed
inherited deprecated
since

3.4.2

deprecated

5.0 Use Joomla\Input\Input instead

Arguments

vars

arrayAssociative array of keys and filter types to apply. If empty and datasource is null, all the input data will be returned but filtered using the filter given by the parameter defaultFilter in InputFilter::clean.

datasource

mixedArray to retrieve data from, or null.

defaultFilter

stringDefault filter used in InputFilter::clean if vars is empty and datasource is null. If 'unknown', the default case is used in InputFilter::clean.

recursion

boolFlag to indicate a recursive function call.

Response

mixedThe filtered input data.

getRaw

Gets the raw JSON string from the request.

getRaw() : string
deprecated
since

3.0.1

deprecated

5.0 Use Joomla\Input\Json instead

Response

stringThe raw JSON string from the request.

unserialize

Method to unserialize the input.

unserialize(string input) : \Joomla\CMS\Input\Input
inherited deprecated
since

3.0.0

deprecated

5.0 Use Joomla\Input\Input instead

Arguments

input

stringThe serialized input.

Response

\Joomla\CMS\Input\InputThe input object.

Properties

_raw

The raw JSON string from the request.

deprecated
since

3.0.1

deprecated

5.0 Use Joomla\Input\Json instead

Type(s)

string

allowedGlobals

Container with allowed superglobals

inherited static deprecated
since

3.8.9

deprecated

5.0 Use Joomla\Input\Input instead

Type(s)

array

inputs

Input objects

inherited deprecated
since

1.7.0

deprecated

5.0 Use Joomla\Input\Input instead

Type(s)

Input[]

get

inherited

Type(s)

Input

post

inherited

Type(s)

Input

request

inherited

Type(s)

Input

server

inherited

Type(s)

Input

env

inherited

Type(s)

Input

files

inherited

Type(s)

Files