Json encode and decode: Difference between revisions

From LemonWiki共筆
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...")
 
mNo edit summary
Line 3: Line 3:
* PHP: [https://www.php.net/manual/en/function.json-encode.php json_encode] ↔ [https://www.php.net/manual/en/function.json-decode.php json_decode]
* PHP: [https://www.php.net/manual/en/function.json-encode.php json_encode] ↔ [https://www.php.net/manual/en/function.json-decode.php json_decode]
* JavaScript: [https://developer.mozilla.org/zh-TW/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify JSON.stringify()] ↔ [https://developer.mozilla.org/zh-TW/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse JSON.parse()]
* JavaScript: [https://developer.mozilla.org/zh-TW/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify JSON.stringify()] ↔ [https://developer.mozilla.org/zh-TW/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse JSON.parse()]
* Python [https://docs.python.org/3/library/json.html json — JSON encoder and decoder — Python 3.9.5 documentation]


Related pages
Related pages

Revision as of 10:14, 13 May 2021