Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. $curl = curl_init();
  2. curl_setopt($curl, CURLOPT_URL, "http://seuip:8080/teste.php");
  3. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  4. curl_setopt($curl, CURLOPT_HEADER, false);
  5. $response = curl_exec($curl);
  6. var_dump($response);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement