Home
last modified time | relevance | path

Searched refs:json_encode (Results 76 – 100 of 240) sorted by path

12345678910

/plugin/davcard/vendor/sabre/vobject/tests/VObject/Parser/
H A DJsonTest.php158 $parser = new Json(json_encode($input));
311 $parser = new Json(json_encode($input));
369 fwrite($stream, json_encode($input));
392 $json->parse(json_encode($input), 0);
/plugin/dbquery/
H A Drenderer.php51 $this->doc = json_encode([
/plugin/deeplautotranslate/
H A Daction.php440 $raw_json = json_encode($content);
456 $raw_json = json_encode($content);
/plugin/diagrams/action/
H A Dmediafile.php46 echo json_encode(file_exists($file));
77 echo json_encode($editable);
123 echo json_encode(auth_quickaclcheck($ns . ':*') >= AUTH_UPLOAD);
/plugin/diagramsnet/
H A Daction.php85 echo json_encode($result);
90 echo json_encode($result);
109 echo json_encode($result);
113 echo json_encode($result);
/plugin/discordnotifier/examples/
H A Dsend_embeds.php23 $json = json_encode($payload);
H A Dsend_message.php13 $json = json_encode($payload);
/plugin/discordnotifier/
H A Dhelper.php195 $json_payload = json_encode ( $this->_payload );
/plugin/dlcounter/
H A Daction.php69 file_put_contents( $fname, json_encode($json) );
/plugin/do/
H A Daction.php78 echo json_encode($status);
97 echo json_encode($status);
/plugin/doi/Resolver/
H A DAbstractResolver.php97 file_put_contents($cache, json_encode($result));
/plugin/dropfiles/action/
H A Dajax.php53 echo json_encode($this->checkFiles());
121 echo json_encode($result);
/plugin/dump/renderer/
H A Dcallstack.php35 $body = json_encode($ins, JSON_PRETTY_PRINT);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Fonts/
H A DFontCache.php61 return $this->cache->write($filename, json_encode($data));
/plugin/edittable/renderer/
H A Djson.php38 return json_encode($this->tdata);
47 return json_encode($this->tmeta);
/plugin/elasticsearch/cli/
H A Dimg.php69 echo json_encode($data, JSON_PRETTY_PRINT);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DCHANGELOG.md261 - Fix `json_encode` for unicode(emoji) characters [856](https://github.com/elastic/elasticsearch-php/pull/856)
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dphp_json_objects.asciidoc60 By using an explicit stdClass object, we can force the `json_encode` parser to
H A Drelease-notes.asciidoc403 * Fix `json_encode` for unicode(emoji) characters
H A Dsearch-operations.asciidoc67 print_r(json_encode($params['body']));
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/
H A DConnection.php748 return json_encode($body);
770 // added json_encode to convert into a string
771 return new $errorClass(json_encode($response['body']), (int) $response['status']);
785 // added json_encode to convert into a string
786 $original = new $errorClass(json_encode($response['body']), $response['status']);
791 // added json_encode to convert into a string
792 $original = new $errorClass(json_encode($response['body']), $response['status']);
796 $errorEncoded = json_encode($errorEncoded);
804 $responseBody = json_encode($responseBody);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Serializers/
H A DArrayToJSONSerializer.php38 $data = json_encode($data, JSON_PRESERVE_ZERO_FRACTION + JSON_INVALID_UTF8_SUBSTITUTE);
H A DEverythingToJSONSerializer.php35 $data = json_encode($data, JSON_PRESERVE_ZERO_FRACTION + JSON_INVALID_UTF8_SUBSTITUTE);
H A DSmartSerializer.php39 $data = json_encode($data, JSON_PRESERVE_ZERO_FRACTION + JSON_INVALID_UTF8_SUBSTITUTE);
/plugin/elasticsearch/vendor/react/promise/src/
H A DUnhandledRejectionException.php22 $message = \sprintf('Unhandled Rejection: %s', \json_encode($reason));

12345678910