Answers for "php convert array to json key value"

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

Code answers related to "php convert array to json key value"

Browse Popular Code Answers by Language