Created
June 1, 2016 11:45
-
-
Save peerapongsam/8e5256f6f5af1257c656430e72df508b to your computer and use it in GitHub Desktop.
php json_encode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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