Skip to content

Instantly share code, notes, and snippets.

@peerapongsam
Created June 1, 2016 11:45
Show Gist options
  • Save peerapongsam/8e5256f6f5af1257c656430e72df508b to your computer and use it in GitHub Desktop.
Save peerapongsam/8e5256f6f5af1257c656430e72df508b to your computer and use it in GitHub Desktop.
php json_encode
<?php
$users = [
[
"_id"=> "574ec9608236b128d88e62ec",
"name"=> "Mack Santiago",
"age"=> 26,
"email"=> "[email protected]"
],
[
"_id"=> "574ec96081802773dbb647fc",
"name"=> "Bowen Bentley",
"age"=> 40,
"email"=> "[email protected]"
],
[
"_id"=> "574ec96080fa3bc0723f3f7b",
"name"=> "Ortiz Short",
"age"=> 39,
"email"=> "[email protected]"
],
[
"_id"=> "574ec9600a0afbdbf8aa089e",
"name"=> "Tabatha Merrill",
"age"=> 33,
"email"=> "[email protected]"
]
];
echo json_encode($users);
<?php
$users = [
[
"_id"=> "574ec9608236b128d88e62ec",
"name"=> "Mack Santiago",
"age"=> 26,
"email"=> "[email protected]"
],
[
"_id"=> "574ec96081802773dbb647fc",
"name"=> "Bowen Bentley",
"age"=> 40,
"email"=> "[email protected]"
],
[
"_id"=> "574ec96080fa3bc0723f3f7b",
"name"=> "Ortiz Short",
"age"=> 39,
"email"=> "[email protected]"
],
[
"_id"=> "574ec9600a0afbdbf8aa089e",
"name"=> "Tabatha Merrill",
"age"=> 33,
"email"=> "[email protected]"
]
];
echo json_encode($users, JSON_PRETTY_PRINT);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment