Answers for "online convert php array to json"

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 "online convert php array to json"

Browse Popular Code Answers by Language