Json
Extends \Joomla\Registry\AbstractRegistryFormatJSON format handler for Registry.
since |
1.0 |
---|
Methods
getInstance
Returns a reference to a Format object, only creating it if it doesn't already exist.
getInstance(string $type, array $options = array()) : \Joomla\Registry\AbstractRegistryFormat
deprecated |
2.0 Use Factory::getFormat() instead |
---|---|
since |
1.0 |
throws |
|
Arguments
- $type
string
The format to load- $options
array
Additional options to configure the object
Response
\Joomla\Registry\AbstractRegistryFormat
Registry format handler
objectToString
Converts an object into a JSON formatted string.
objectToString(object $object, array $options = array()) : string
since |
1.0 |
---|
Arguments
- $object
object
Data source object.- $options
array
Options used by the formatter.
Response
string
JSON formatted string.
stringToObject
Parse a JSON formatted string and convert it into an object.
stringToObject(string $data, array $options = array('processSections' => false)) : object
If the string is not in JSON format, this method will attempt to parse it as INI format.
since |
1.0 |
---|---|
throws |
|
Arguments
- $data
string
JSON formatted string to convert.- $options
array
Options used by the formatter.
Response
object
Data object.
Properties
instances
Format instances container.
since |
1.0 |
---|---|
deprecated |
2.0 Object caching will no longer be supported |
Type(s)
array<mixed,\Joomla\Registry\AbstractRegistryFormat>