Answers for "php header json"

PHP
1

php header json

header('Content-Type: application/json');
echo json_encode($data);
Posted by: Guest on March-03-2021
0

php json_encode header detail

$array = array();

$array['Name'] = 'Alex';
$array['Age'] = 37;
$array['Admin'] = TRUE;

$array['Contact'] = array
(
  'Site' => "alexwebdevelop.com",
  'Phone' => 123456789,
  'Address' => NULL
);

$array['Tags'] = array('php', 'web', 'dev');

$json = json_encode($array, JSON_PRETTY_PRINT);

echo '<pre>';
echo $json;
echo '</pre>';
Posted by: Guest on July-07-2020

Browse Popular Code Answers by Language