Guest User

Untitled

a guest
May 23rd, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. url= "https://maps.googleapis.com/maps/api/distancematrix/json?
  2. origins=6601se,holland&destinations=5344at,holland";
  3. $ch = curl_init();
  4. curl_setopt($ch, CURLOPT_URL, $url);
  5. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  6. curl_setopt($ch, CURLOPT_PROXYPORT, 3128);
  7. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
  8. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
  9. $response = curl_exec($ch);
  10. curl_close($ch);
  11. $response_a = json_decode($response, true);
  12. print_r( $response_a );
Add Comment
Please, Sign In to add comment