Answers for "convert json to associative array php"

PHP
10

php convert array to json object

$myArr = array("apple", "banana", "mango", "jackfruit");

$toJSON = json_encode($myArr);

echo $toJSON;
Posted by: Guest on June-18-2020
0

php json string to associative array

$assocArray = json_decode($data, true);
Posted by: Guest on January-20-2021
0

parse json phph

echo json_decode("[1,2,3]")[0];
Posted by: Guest on January-15-2020

Code answers related to "convert json to associative array php"

Browse Popular Code Answers by Language