1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | function browse($url, $postData = null) { $fields = ''; if(is_array($postData) && sizeof($postData) >= 1){ $fields = http_build_query($postData); } $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); if($fields !=='') { curl_setopt($ch, CURLOPT_POST, count($postData)); curl_setopt($ch, CURLOPT_POSTFIELDS, $fields); } curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_COOKIESESSION, true); // Write cookie if needed .. also try: dirname(__FILE__) . '/cookie.txt'; curl_setopt($ch, CURLOPT_COOKIEJAR , '/tmp/cookie.txt'); // Read cookie if needed curl_setopt($ch, CURLOPT_COOKIEFILE, '/tmp/cookie.txt'); $result = curl_exec($ch); curl_close($ch); return $result; } |
-
Archives
- March 2019
- March 2018
- June 2017
- May 2017
- November 2016
- September 2016
- July 2016
- June 2016
- May 2016
- April 2016
- March 2016
- February 2016
- January 2016
- December 2015
- November 2015
- October 2015
- September 2015
- August 2015
- July 2015
- June 2015
- April 2015
- December 2014
- October 2014
- September 2014
- May 2014
- April 2014
- March 2014
- January 2014
- November 2013
- October 2013
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
-
Meta