Guest User

Untitled

a guest
Oct 17th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <?php
  2. $foo = array(
  3. 'curso' => 'ADS 1',
  4. 'periodo' => 'Noite',
  5. 'faculdade' => 'FATEC',
  6. 'grupo' => 'Alfa 7',
  7. 'membros' => array(
  8. array(
  9. 'nome' => 'Lucas Colette',
  10. 'RA' => '212114030'
  11. ),
  12. array(
  13. 'nome' => 'Erondi Lopes',
  14. 'RA' => '212114000'
  15. ),
  16. array(
  17. 'nome' => 'Vinicius Jose Crecenzi',
  18. 'RA' => '212114000'
  19. )
  20. )
  21. );
  22.  
  23. print json_encode($foo);
Add Comment
Please, Sign In to add comment