Tools, FAQ, Tutorials:
json_encode() Function in PHP
Where to get the detailed description of the json_encode() Function in PHP?
✍: FYIcenter.com
Here is the detailed description of the
json_encode() Function in PHP.
Description - The json_encode() function generates a JSON text string that represents the given PHP value.
Syntax -
string json_encode ( mixed $value [, int $options = 0 [, int $depth = 512 ]] )
Parameters -
Return value - A JSON text string on success or FALSE on failure.
Examples -
<?php $arr = array('a' => 1, 'b' => 2, 'c' => 3, 'd' => 4, 'e' => 5); echo json_encode($arr); # The above example will output: # # {"a":1,"b":2,"c":3,"d":4,"e":5} ?>
Â
⇒⇒JSON Tutorials
2022-06-29, 2504👍, 3💬
Popular Posts:
Where is API Management Service on my Azure Portal? If your IT department has signed up for an Azure...
Where to get the detailed description of the JSON.stringify() Function in JavaScript? Here is the de...
How To Use an Array as a Queue in PHP? A queue is a simple data structure that manages data elements...
How to create Hello-3.1.epub with WinRAR? I have all required files to create Hello-3.1.epub. To cre...
How to use the XML to JSON Conversion Tool at freeformatter.com? If you want to try the XML to JSON ...