Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function get_data($url)
- {
- $ch = curl_init();
- $timeout = 5;
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($ch, CURLOPT_URL,$url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
- curl_setopt($ch, CURLOPT_CONNECTTIMEOUT,$timeout);
- curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, true);
- // curl_setopt($ch, CURLOPT_PROXY, "144.16.192.247");
- // curl_setopt($ch, CURLOPT_PROXYPORT, "8080");
- $data = curl_exec($ch);
- curl_close($ch);
- return $data;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement