Advertisement
angelgoitia

api dolar

Sep 7th, 2022
1,084
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. public function getDolar_api(){
  2.         $client = new \GuzzleHttp\Client();
  3.         $request  = $client->request('GET', 'http://s3.amazonaws.com/dolartoday/data.json');
  4.         $response = $request->getBody()->getContents();
  5.         $tasas = json_decode($response);
  6.  
  7.         if(is_null($tasas))
  8.             return null;
  9.  
  10.         return $tasas->USD->promedio_real;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement