Home
last modified time | relevance | path

Searched refs:JSON (Results 251 – 275 of 436) sorted by path

1...<<1112131415161718

/plugin/dw2pdf/vendor/mpdf/mpdf/
H A DCHANGELOG.md63 * Font temporary data saved as JSON instead of generating PHP files (thanks, @jakejackson)
/plugin/edittable/lib/
H A Dhandsontable.full.js1571 return JSON.parse(JSON.stringify(obj));
1665 return JSON.stringify(object1) === JSON.stringify(object2);
22431 var $JSON = global.JSON;
22634 setToStringTag(global.JSON, 'JSON', true);
/plugin/edittable/script/
H A Deditor.js119 var data = JSON.parse($datafield.val());
120 var meta = JSON.parse($metafield.val());
365 $datafield.val(JSON.stringify(dataLBFixed));
366 $metafield.val(JSON.stringify(meta));
/plugin/elasticsearch/conf/
H A Delasticsearch.conf.example3 # Use this file to setup media parsers. The parsers must return text or JSON.
/plugin/elasticsearch/lang/en/
H A Dconfmanager_description.txt3 The parsers can be command line tools or web services. They must return plain text or a JSON structure.
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DCHANGELOG.md69 - Improved message of JSON errors using `json_last_error_msg()`
H A DREADME.md102 We also provide a code examples generator for PHP using the `util/GenerateDocExamples.php` script. This command parses the `util/alternative_report.spec.json` file produced from this [JSON specification](https://raw.githubusercontent.com/elastic/built-docs/master/raw/en/elasticsearch/reference/master/alternatives_report.json) and it generates the PHP examples for each digest value.
149 Version 7.0 of this library requires at least PHP version 7.1. In addition, it requires the native JSON
185 associative array containing a decoded version of the JSON that Elasticsearch returns:
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dconfiguration.asciidoc12 To learn more about JSON in PHP, read <<php_json_objects>>.
H A Dconnecting.asciidoc260 decoded version of the JSON that {es} returns:
H A Dcrud.asciidoc8 When you add documents to {es}, you index JSON documents. This maps naturally to
9 PHP associative arrays, since they can easily be encoded in JSON. Therefore, in
72 {es} also supports bulk indexing of documents. The bulk API expects JSON
H A Dhelpers.asciidoc33 'match_all' => new StdClass // {} in JSON
70 'match_all' => new StdClass // {} in JSON
H A Dinstallation.asciidoc10 * Native JSON Extensions (`ext-json`) 1.3.7 or higher
51 new project, paste the following JSON snippet into a new file called
H A Dper-request-configuration.asciidoc52 the JSON provided by {es} instead.
90 as JSON. In the first example, the response body is a complete JSON object which
H A Dphp_json_objects.asciidoc2 === Dealing with JSON arrays and objects in PHP
4 A common source of confusion with the client revolves around JSON arrays and
7 used in {es} JSON API and how to convert that to a PHP representation.
12 The {es} API uses empty JSON objects in several locations which can cause
34 <1> This empty JSON object is what causes problems.
58 JSON now encodes correctly.
83 <1> "sort" contains an array of JSON objects.
133 objects, and some of those objects might be empty JSON objects.
173 <3> This encodes the empty JSON object: `"random_score": {}
H A Drelease-notes.asciidoc143 * Improved message of JSON errors using `json_last_error_msg()`
H A Dsearch-operations.asciidoc50 JSON request body. This makes it very simple to convert JSON examples into PHP.
52 it back to JSON and check it:
75 .Using Raw JSON
77 Sometimes it is convenient to use raw JSON for testing purposes, or when
78 migrating from a different system. You can use raw JSON as a string in the body,
103 difference is that the JSON response is serialized back into PHP arrays. Working
179 into an array of JSON objects internally, so the final resulting output is
181 see <<php_json_objects, Dealing with JSON Arrays and Objects in PHP>>.
H A Dserializers.asciidoc10 JSON.
23 users to provide raw JSON, or raw strings for certain endpoints that don't have
26 If the data is an array, it is converted to JSON. If the data provided was an
27 empty array, the serializer manually converts the JSON from an empty array
28 (`[]`) to an empty object (`{}`) so that it is valid JSON for {es} request
37 encoded as JSON, it is decoded into an array using `json_decode`. Otherwise, it
41 endpoints, which return tabular text instead of JSON.
71 users to provide raw JSON, or raw strings for certain endpoints that don't have
75 empty array, the serializer manually converts the JSON from an empty array
76 (`[]`) to an empty object (`{}`) so that it is valid JSON fo
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md378 * Preserve zeros while doing float serialization to JSON. [#1635](https://github.com/ruflin/Elastica/pull/1635)
417 * Reduced memory footprint of response by not keeping the raw JSON data when JSON after JSON has been parsed. [#1588](https://github.com/ruflin/Elastica/pull/1588)
683 - `\Elastica\JSON` throws exception with readable message instead of errno
684 - `\Elastica\JSON::stringify` throws `\Elastica\Exception\JSONParseException` on error
797 - Get the root reason from Elasticsearch's error JSON, when available [#1111](https://github.com/ruflin/Elastica/pull/1111)
944 - Connection option to convert JSON bigint results to strings can now be set [#717](https://github.com/ruflin/Elastica/issues/717)
1235 - Fixed escaping of / character in Elastica\Util::escapeTerm(), removed usage of JSON_UNESCAPED_SLASHES in Elastica\JSON [#660](https://github.com/ruflin/Elastica/issues/660/)
1294 - Add JSON compa
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Bulk/
H A DAction.php7 use Elastica\JSON; alias
50 $string = JSON::stringify($this->getActionMetadata(), \JSON_FORCE_OBJECT).Bulk::DELIMITER;
64 $string .= JSON::stringify($source, \JSON_UNESCAPED_UNICODE);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Exception/
H A DPartialShardFailureException.php5 use Elastica\JSON; alias
24 $this->message = JSON::stringify($shardsStatistics);
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DJSON.php8 * Elastica JSON tools.
10 class JSON class
13 * Parse JSON string to an array.
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.
53 * @return string Valid JSON representation of $input
H A DRequest.php53 return JSON::stringify($this->toArray());
H A DResponse.php323 * Sets whether or not to apply bigint conversion on the JSON result.
333 * Gets whether or not to apply bigint conversion on the JSON result.
353 $response = JSON::parse($response, true, 512, \JSON_BIGINT_AS_STRING);
355 $response = JSON::parse($response);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Multi/
H A DSearch.php6 use Elastica\JSON; alias
164 $data = JSON::stringify($header)."\n";
165 $data .= JSON::stringify($query->toArray() + $queryOptions)."\n";
/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DGuzzle.php9 use Elastica\JSON; alias
204 $data = JSON::stringify($data, \JSON_UNESCAPED_UNICODE);

1...<<1112131415161718