> 백엔드 개발 > PHP 튜토리얼 > 163.com 이메일 로그인 163 이메일에 로그인하고 이메일 친구 목록을 가져오는 PHP 컬 코드(테스트됨)

163.com 이메일 로그인 163 이메일에 로그인하고 이메일 친구 목록을 가져오는 PHP 컬 코드(테스트됨)

WBOY
풀어 주다: 2016-07-29 08:44:42
원래의
7598명이 탐색했습니다.

직설적으로 말하면, CURL 기술은 페이지 크롤링이나 양식 제출을 달성하기 위해 브라우저 동작을 시뮬레이션합니다. 이 기술을 통해 많은 흥미로운 기능을 달성할 수 있습니다.

코드 복사 코드는 다음과 같습니다.


error_reporting(0)
//이메일 사용자 이름(@163.com 접미사 제외)
$user = 'papatata_test'
//이메일 비밀번호
$pass = '000000'//대상 이메일
/ /$mail_addr = uenucom@163.com';
//로그인
$url = 'http://reg.163.com/logins.jsp?type=1&url=http://entry.mail. 163.com/coremail/fcg/ntesdoor2?lightweight=1&verifycookie=1&언어=-1&style=-1';
$ch = cur_init($url)
//쿠키 정보를 저장할 임시 파일 만들기
$cookie = tempnam('.','~');
$referer_login = 'http://mail.163.com';
//반환된 결과는 기본값이 아닌 변수에 저장됩니다.
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 120); CURLOPT_POST, true)
curl_setopt($ch, CURLOPT_REFERER, $referer_login)
$fields_post = array(
'username'=> $user,
'password'=> $pass ,
'verifycookie'=>1,
'style'=>-1,
'product'=> 'mail163',
'selType'=>-1,
'보안'=>'설정'
);
$headers_login = array(
'User-Agent' => 'Mozilla/5.0(Windows; U; Windows NT 5.1; zh- CN; rv:1.9) Gecko/2008052906 Firefox/3.0',
'참조자' => 'http://www.163.com'
)
$fields_string = ''; >foreach($fields_post as $key => $value)
{
$fields_string .= $key . '&' .
$fields_string = rtrim ($fields_string , '&');
curl_setopt($ch, CURLOPT_COOKIESESSION, true)
//연결을 닫을 때 서버에서 반환한 쿠키를 다음 파일에 저장합니다.
curl_setopt($ch , CURLOPT_COOKIEJAR, $cookie);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers_login);
curl_setopt($ch, CURLOPT_POST, count($fields))
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields_string ) ;
$result=curl_exec($ch);
curl_close($ch)
//Jump
$url='http://entry.mail.163.com/coremail/ fcg/ntesdoor2?lightweight=1&verifycookie=1&언어=-1&style=-1&username=loki_wuxi';
$ch = cur_init($url)
$headers = array(
'User-Agent' => 'Mozilla/5.0(Windows; U; Windows NT 5.1; zh-CN; rv:1.9) Gecko/2008052906 Firefox/3.0'
)
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true)
curl_setopt ($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 120);
curl_setopt($ch, CURLOPT_POST, true)
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers) 🎜>//기존에 저장된 쿠키 정보를 함께 서버로 전송
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie)
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie)
$result = cur_exec( $ch);
curl_close($ch);
//sid 가져오기
preg_match('/sid=[^"].*/', $result, $location);
$sid = substr($location[0], 4, -1);
//file_put_contents('./result.txt', $sid)
//주소록 주소
$url= 'http ://g4a30.mail.163.com/jy3/address/addrlist.jsp?sid='.$sid.'&gid=all';
$ch = cur_init($url)
$ headers = array(
'User-Agent' => 'Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9) Gecko/2008052906 Firefox/3.0'
); $ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 120)
curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie);
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie)
$result =curl_exec($ch) ;
curl_close($ch);
//file_put_contents('./result.txt', $result);
unlink($cookie)//콘텐츠 크롤링 시작
preg_match_all ('/

]*>(.*?) ]* >(. *?)/i', $result,$infos,PREG_SET_ORDER)
//1: 이름 2: 이메일
print_r($infos)
? >


위 내용은 PHP 컬을 사용하여 163 메일박스에 로그인하고 163.com 메일박스 로그인 내용을 포함하여 메일박스 친구 목록을 가져오는 코드(테스트됨)를 소개합니다. 친구에게 도움이 되기를 바랍니다. PHP 튜토리얼에 관심이 있는 분.


관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿