Spaces:
Running
Running
File size: 312 Bytes
8a56229 aeb705e 8a56229 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<?php
header('Content-Type: application/json');
$municipios = [
[
"nome" => "São Paulo",
"uf" => "SP",
"url" => "https://www.saopaulo.sp.gov.br"
],
[
"nome" => "Rio de Janeiro",
"uf" => "RJ",
"url" => "https://www.riodejaneiro.rj.gov.br"
]
];
echo json_encode($municipios);
?> |