Json encode and decode: Difference between revisions
Jump to navigation
Jump to search
(Created page with "Encode JSON data or decode JSON string * PHP: [https://www.php.net/manual/en/function.json-encode.php json_encode] ↔ [https://www.php.net/manual/en/function.json-decode.php...") |
(No difference)
|
Revision as of 09:50, 13 May 2021
Encode JSON data or decode JSON string
- PHP: json_encode ↔ json_decode
- JavaScript: JSON.stringify() ↔ JSON.parse()
Related pages