Skip to content

Instantly share code, notes, and snippets.

View GustavoMartinsSantos's full-sized avatar
🪐
Focusing

Gustavo Martins dos Santos GustavoMartinsSantos

🪐
Focusing
  • Osasco, SP, Brazil
View GitHub Profile
@GustavoMartinsSantos
GustavoMartinsSantos / get_address.php
Created December 6, 2020 03:36 — forked from zerobugs-oficial/get_address.php
Como pegar endereço completo através do CEP usando PHP
<?php
function get_endereco($cep){
// formatar o cep removendo caracteres nao numericos
$cep = preg_replace("/[^0-9]/", "", $cep);
$url = "http://viacep.com.br/ws/$cep/xml/";
$xml = simplexml_load_file($url);