make json array in php code example
Example 1: php convert array to json object
$myArr = array("apple", "banana", "mango", "jackfruit");
$toJSON = json_encode($myArr);
echo $toJSON;
Example 2: php return json
header('Content-type: application/json');
echo json_encode($array);
Example 3: convert text file to json php
<?php
header('Content-type: application/json');
echo json_encode( explode("\r\n",file_get_contents('data.txt')) );
?>
Example 4: php convert array to json
{} = json_encode([]);