Advertisement
Munfaqqiha

cURL @TeraBox

Jun 18th, 2023
1,595
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.38 KB | None | 0 0
  1.      $curl = curl_init();
  2.      curl_setopt($curl, CURLOPT_URL, $link);
  3.      curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  4.      curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 3);
  5.      curl_setopt($curl, CURLOPT_TIMEOUT, 4);
  6.      $call = curl_exec($curl);
  7.      curl_close($curl);
  8.      $call = json_decode($call, true);
  9.      // echo "<br><pre>", print_r($call, true), "</pre></br>";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement