Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $curl = curl_init();
- curl_setopt($curl, CURLOPT_URL, $link);
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 3);
- curl_setopt($curl, CURLOPT_TIMEOUT, 4);
- $call = curl_exec($curl);
- curl_close($curl);
- $call = json_decode($call, true);
- // echo "<br><pre>", print_r($call, true), "</pre></br>";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement