Last active
April 14, 2017 03:35
-
-
Save davidalves1/0b927c94d62d76a113c6eeac6d151a4a to your computer and use it in GitHub Desktop.
Exemplo simples de uma chamada cURL em PHP.
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 | |
// Link com maiores detalhes e exemplos: https://sounoob.com.br/curl-usando-e-abusando/ | |
// Como é um chamaga GET, não precisa passar qual o método | |
$ch = curl_init('https://viacep.com.br/ws/29730000/json/'); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); | |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); | |
// Retorna como objeto. Se quiser como array é só passar `true` como segundo parâmetro | |
$response = json_decode(curl_exec($ch), true); | |
curl_close($ch); | |
echo 'O CEP ', $response['cep'], ' é de ', $response['localidade'], "! \n"; | |
print_r($response); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment