fork(1) download
  1. <?php
  2.  
  3. $endereco = array(
  4. 'rua' => 'Pennsylvania Avenue NW',
  5. 'numero' => '1600',
  6. 'cidade' => 'Washington',
  7. 'estado' => 'DC',
  8. 'cep' => '20500');
  9.  
  10. echo json_encode($endereco);
Success #stdin #stdout 0.02s 24448KB
stdin
Standard input is empty
stdout
{"rua":"Pennsylvania Avenue NW","numero":"1600","cidade":"Washington","estado":"DC","cep":"20500"}