Guest User

Untitled

a guest
May 24th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. $curlSession = curl_init();
  2. curl_setopt($curlSession, CURLOPT_URL, '172.18.0.2');
  3. curl_setopt($curlSession, CURLOPT_BINARYTRANSFER, true);
  4. curl_setopt($curlSession, CURLOPT_RETURNTRANSFER, true);
  5. $jsonData = json_decode(curl_exec($curlSession));
  6. curl_close($curlSession);
  7. var_dump($jsonData);
Add Comment
Please, Sign In to add comment