5 lines
175 B
Text
5 lines
175 B
Text
|
|
$data = json_decode(''{ "foo": 1, "bar": [10, "apples"] }'');
|
||
|
|
|
||
|
|
$sample = ["blue" => [1, 2], "ocean" => "water"];
|
||
|
|
$jsonstring = json_encode($sample, ["pretty_print" => true]);
|