Created
December 11, 2017 00:46
-
-
Save Jul10l1r4/5b71a09dabcf574db174f2d366b10f71 to your computer and use it in GitHub Desktop.
Array-Users created by Jul10l1r4 - https://repl.it/@Jul10l1r4/Array-Users
This file contains 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 = [ | |
[ 'idade' => 29, 'nome' => 'Marcos lucim' ], | |
[ 'idade' => 20, 'nome' => 'Marcos ' ], | |
[ 'idade' => 50, 'nome' => 'Marcelo dougras' ], | |
]; | |
// Aqui a array no caso pode ser um json de uma api | |
//$users = json_decode ( file_get_contents( ), true ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment