Lines Matching full:json
8 * Elastica JSON tools.
10 class JSON class
13 * Parse JSON string to an array.
15 * @see http://php.net/manual/en/function.json-decode.php
16 * @see http://php.net/manual/en/function.json-last-error.php
18 * @param mixed $args,... JSON string to parse
22 * @return array PHP array representation of JSON string
44 * Convert input to JSON string with standard options.
46 * @see http://php.net/manual/en/function.json-encode.php
47 * @see http://php.net/manual/en/function.json-last-error.php
53 * @return string Valid JSON representation of $input
73 * Get Json Last Error.
75 * @see http://php.net/manual/en/function.json-last-error.php
76 * @see http://php.net/manual/en/function.json-last-error-msg.php
77 * @see https://github.com/php/php-src/blob/master/ext/json/json.c#L308