Answers for "php json_encode decode in jquery"

0

json_decode jquery

var obj = jQuery.parseJSON( '{ "name": "John" }' );
alert( obj.name === "John" );
Posted by: Guest on December-22-2020
0

json encode decode php

$json = '{"a":1,"b":2,"c":3}';
var_dump(json_decode($json)); //converts json to array

$array = [ "a" => 1, "b" => 2, "c" => 3];
echo json_encode($json_encode($json)); //converts array to json
Posted by: Guest on April-07-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language