|
发表于 2017-8-7 07:06:38
|
显示全部楼层
福建省宁德市
- <?php
- $headers = array(
- 'User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9) Gecko/2008052906 Firefox/3.0',
- 'Referer: http://www.9ifz.cc',
- 'Cookie: sessionid=29475e48124c520cf70060dc;steamLoginSecure=76561198117047952%7C%7C512C7DB04B6A9719E1673019C075AA5ECF2B5032',
- );
- $url='https://www.9ifz.cc';
- $ch = curl_init($url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($ch, CURLOPT_HEADER, true);
- curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 120);
- curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
- $result = curl_exec($ch);
- curl_close($ch);
- echo $result;
- ?>
复制代码
|
|