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_encode() - PHP to JSON Data Type Mapping
2022-06-29, 3380🔥, 3💬
Popular Posts:
How to add images to my EPUB books Images can be added into book content using the XHTML "img" eleme...
How to login to the Developer Portal internally by you as the publisher? Normally, the Developer Por...
How to install "C++/CLI Support" component in Visual Studio? I need to build my Visual Studio C++/CL...
How to Install Docker Desktop on Windows 10? You can follow this tutorial to Install Docker Desktop ...
Why I am getting "The Windows SDK version 8.1 was not found" error, when building my C++ application...