오후에는 인기가 많은 공간을 보았는데, 친구들이 오랜만에 연락을 하더군요! 저에게 연락하세요! 자신의 공간에서 보는 사람의 QQ와 닉네임이 사진에 표시됩니다! 이것은 어떻게 이루어 집니까? 여기에 작은 데모를 작성했습니다. QQ 닉네임을 얻으려면 웹페이지를 방문해야 합니다. 여기에 원본 클래스가 있습니다! 직접 사용해 보세요. 얻을 수 있는 방법은 많습니다! 하지만 바로 코드로 가보겠습니다!
- $ment = $_SERVER["HTTP_REFERER"];
- preg_match("#[0-9]{5,11}#", $ment,$rr);
- $r=$rr[0];
- include_once("Curl.class.php");
- $curl=new Curl();
- $webtext= $curl->get('http://redstones.sinaapp.com/apis/qqinfo-service.php?qq='.$r);
- preg_match('#"nickname":"(. *?)"#',$webtext,$rr);
- $rrr=$rr[1];
-
- header("콘텐츠 유형:이미지/png");
- $ im=imagecreatefromjpeg("1.jpg");
- $black = ImageColorAllocate($im, 56,73,136);
- $fnt="shenfenzheng.TTF";
- imagettftext($im,26,0,110,100 ,$black,"shenfenzheng.TTF",$rrr);
- imagettftext($im,26,0,100,180,$black,"shenfenzheng.TTF",$r);
- imagejpeg($im);
- imagedestroy($im);
- ?>
코드 복사
- class Curl{
-
- //CURL 핸들
- private $ch = null;
- //CURL 실행 전후에 설정되거나 서버에서 반환되는 정보
- private $info = array();
- //CURL SETOPT 정보
- private $setopt = array(
- //접속된 포트, http 기본값은 80
- 'port'=>80,
- //클라이언트 USERAGENT, 예: "Mozilla/4.0", 비어 있으면 사용자의 브라우저가 사용됩니다
- 'userAgent'=>'' ,
- //연결 시간 초과
- 'timeOut'=>30,
- //COOKIE 사용 여부는 대부분의 웹사이트에서 사용하므로 켜는 것이 좋습니다.
- 'useCookie'=>true ,
- / /SSL 지원 여부
- 'ssl'=>false,
- //클라이언트에서 gzip 압축 지원 여부
- 'gzip'=>true,
-
- / /프록시 사용 여부
- 'proxy'=>false,
- //프록시 유형은 HTTP 또는 SOCKS5를 선택할 수 있습니다.
- 'proxyType'=>'HTTP',
- //The HTTP 모드인 경우 프록시의 호스트 주소 "http://www.proxy.com"
- 과 같은 URL 형식으로 작성해야 합니다. //SOCKS5 방법은 호스트 도메인 이름을 "192.168.1.1"
- 'proxyHost'=> 'http://www.proxy.com',
- //프록시 호스트의 포트
- 'proxyPort' =>1234,
- //프록시가 신원 인증을 요구하는지 여부(HTTP 모드에서)
- 'proxyAuth'=>false,
- //인증 방법은 BASIC 또는 NTLM 방법을 선택할 수 있습니다
- 'proxyAuthType'=>'BASIC',
- //사용자 이름 및 비밀번호 인증
- ' ProxyAuthUser'=>'user',
- 'proxyAuthPwd'=>'password',
- );
-
- /**
- * 생성자
- *
- * @param array $setopt: 설정하려면 private $setopt를 참조하세요.
- */
- 공개 함수 __construct($setopt =array())
- {
- //사용자 설정과 시스템 기본 설정 병합
- $this- >setopt = array_merge($this->setopt,$setopt);
- / / CURL이 설치되지 않은 경우 프로그램 종료
- function_exists('curl_init') || die('CURL 라이브러리가 로드되지 않음') ;
- //초기화
- $this->ch = cur_init();
- //CURL 연결을 위한 포트 설정
- cur_setopt($this->ch, CURLOPT_PORT, $this-> ;setopt['port']);
- //프록시 사용
- if($this ->setopt['proxy']){
- $proxyType = $this->setopt['proxyType' ]=='HTTP' ? CURLPROXY_HTTP : CURLPROXY_SOCKS5;
- 컬_setopt($this->ch, CURLOPT_PROXYTYPE, $proxyType);
- 컬_setopt($this->ch, CURLOPT_PROXY, $this->setopt[ 'proxyHost']);
- cur_setopt($this->ch, CURLOPT_PROXYPORT, $this- >setopt['proxyPort']);
- //프록시를 인증해야 합니다
- if($ this->setopt['proxyAuth']){
- $proxyAuthType = $this->setopt[' ProxyAuthType']=='BASIC' ? CURLAUTH_BASIC : CURLAUTH_NTLM;
- 컬_setopt($this->ch , CURLOPT_PROXYAUTH, $proxyAuthType);
- $user = "[{$this->setopt['proxyAuthUser' ]}]:[{$this->setopt['proxyAuthPwd']}]";
- cur_setopt($this->ch, CURLOPT_PROXYUSERPWD, $user);
- }
- }
- if (ini_get('open_basedir') == '' && ini_get('safe_mode' == 'Off') )
- //활성화되면 서버에서 반환된 "위치:"가 헤더에 배치되고 서버에 재귀적으로 반환됩니다.
- cur_setopt($this->ch, CURLOPT_FOLLOWLOCATION, true);
- / /SSL 지원 열기
- if($this->setopt['ssl']){
- // 인증서 소스를 확인하지 않습니다
- 컬_setopt($this->ch, CURLOPT_SSL_VERIFYPEER , false);
- //인증서에서 SSL 암호화 알고리즘이 존재하는지 확인
- cur_setopt($this->ch, CURLOPT_SSL_VERIFYHOST , true);
- }
- //지원하도록 http 헤더 설정 lighttpd 서버에 액세스
- $header[]= '예상:';
- 컬_setopt($this->ch, CURLOPT_HTTPHEADER, $ header);
- //HTTP USERAGENT 설정
- $userAgent = $ this->setopt['userAgent'] ? $this->setopt['userAgent'] : $_SERVER['HTTP_USER_AGENT'];
- curl_setopt($this->ch, CURLOPT_USERAGENT, $userAgent);
- //연결 대기 시간 설정, 0은 기다리지 않음
- cur_setopt($this->ch, CURLOPT_CONNECTTIMEOUT, $this->setopt ['timeOut']);
- //최대 개수 설정 초 단위 컬 실행 허용
- 컬_setopt($this->ch, CURLOPT_TIMEOUT, $this->setopt['timeOut']);
- //클라이언트가 gzip 압축 지원 여부 설정
- if ($this->setopt['gzip']){
- cur_setopt($this->ch, CURLOPT_ENCODING, 'gzip');
- }
- //COOKIE 사용 여부
- if ($this->setopt['useCookie']){
- //임시 COOKIE를 저장할 파일 생성(절대 경로 필요)
- $cookfile = tempnam(sys_get_temp_dir(),'cuk');
- //연결 종료 후 쿠키 정보 저장
- cur_setopt($this->ch, CURLOPT_COOKIEJAR, $cookfile);
- cur_setopt($this-> ;ch, CURLOPT_COOKIEFILE, $cookfile);
- }
- //헤더 파일 정보를 데이터 스트림(HEADER 정보)으로 출력할지 여부는 여기에 메시지를 보관합니다.
- cur_setopt($this->ch, CURLOPT_HEADER , true);
- //The 획득된 정보는 직접 출력되는 대신 파일 스트림 형태로 반환됩니다.
- curl_setopt($this->ch, CURLOPT_RETURNTRANSFER, true) ;
- curl_setopt($this->ch, CURLOPT_BINARYTRANSFER, true) ;
- }
- **
- public function get($url,$params=array(), $referer='')
- {
- return $this->_request('GET', $url, $params, array() , $referer);
- }
-
- /**
- * 以GET 方式執行請求
- *
- * @param string $url :請求的URL
- * @param array $params :請求的參數,格式如: array('id'=> 10,'name'=>'yuanwei')
- * @param array $referer :引用頁,為空時自動設定,如果伺服器有對這個控制的話則一定要設定的.
- * @return 錯誤回傳:false 正確回傳:結果內容
- */
- public function post($url,$params=array(),$uploadFile=array(), $referer= '')
- {
- return $this->_request('POST', $url, $params, $uploadFile, $referer);
- }
-
- /* *
- * 以POST 方式執行請求
- *
- * @param string $url :請求的URL
- * @param array $params :請求的參數,格式如: array('id'=> 10,'name'=>'yuanwei')
- * @param array $uploadFile :上傳的檔案,支援相對路徑,格式如下
- * 單一檔案上傳:array('img1'=>'./file /a.jpg')
- * 同字段多個檔案上傳:array('img'=>array('./file/a.jpg','./file/b.jpg'))
- * @param array $referer :引用頁,引用頁,為空時自動設定,如果伺服器有對這個控制的話則一定要設定的.
- * @return 錯誤回傳:false 正確回傳:結果內容
- */
- public function error()
- {
- return curl_error($this->ch);
- }
-
- /**
- * 得到錯誤訊息
- *
- * @return string
- */
- public function errno()
- {
- return curl_errno($this->ch);
- }
-
- /**
- * 得到錯誤碼
- *
- * @return int
- */
- public function getInfo ()
- {
- return $this->info;
- }
-
- /**
- * 得到發送請求前和請求後所有的伺服器資訊和伺服器Header資訊,其中
- * [before] :請求前所設定的資訊
- * [after] :請求後所有的伺服器資訊
- * [header] :伺服器Header封包資訊
- *
- * @return array
- */
- public function __destruct()
- {
- //關閉CURL
- curl_close($this->ch);
- }
-
- /**
- * 析構函數
- *
- */
- 私有函數_request($method, $url, $params =array(), $uploadFile = array(), $referer='')
- {
- //如果滿足GET方式請求則要連接到後面的URL
- if($method == 'GET '){
- $ url = $this->_parseUrl($url,$params);
- }
- //設定請求的URL
- curl_setopt($this->ch, CURLOPT_URL, $url);
- //如果是POST
- if($method == 'POST'){
- // 發送一個常規的POST請求,類型為:application/x-www-form-urlencoded
- curl_setopt($this-> ch, CURLOPT_POST, true) ;
- //設定POST欄位值
- $postData = $this->_parsmEncode($params,false);
- /*
- //如果有上傳檔案
- if ($uploadFile){
- foreach($uploadFile as $key=>$file){
- if(is_array($file)){
- $n = 0;
- foreach($file as $ f){
- //檔案只需是絕對路徑
- $postData[$key.'['.$n .']'] = '@ '.realpath($f);
- }
- }else{
- $postData[$key] = '@'.realpath($file);
- }
- }
- }
- */
- //pr ($發布數據); die;
- curl_setopt($this->ch, CURLOPT_POSTFIELDS, $postData);
- }
- //設定了引用頁,否則自動設定
- if($referer){
- curl_setopt (curl_setopt (curl_setopt (curl_setopt (curl_setopt (curl_setopt) $this->ch, CURLOPT_REFERER, $referer);
- }else{
- curl_setopt($this->ch, CURLOPT_AUTOREFERER, true);
- }
- //取得所有設定的資訊
- }
- //取得所有設定的資訊
- }
- //取得所有設定的資訊
- $this->info['before'] = curl_getinfo($this->ch);
- //開始執行請求
- $result = curl_exec($this->ch);
- //取得封包頭
- $headerSize = curl_getinfo($this->ch, CURLINFO_HEADER_SIZE);
- $this->info['header'] = substr($result, 0, $ headerSize) ;
- // 刪除封包頭
- $result = substr($result, $headerSize);
- //取得所有包含伺服器回傳的資訊
- $this->info['after'] =curl_getinfo($this->ch);
- //如果請求成功
- if($this->errno() == 0){ //&& $this->info[ 'after'][' http_code'] == 200
- return $result;
- }else{
- return false;
- }
-
- }
-
- /*
-
- }
-
- /*
- * 私有方法:執行最終請求
- *
- * @param string $method :HTTP請求方式
- * @param string $url :請求的URL
- * @param array $params :請求的參數
- * @param array $uploadFile :上傳的檔案(只有POST時才生效)
- * @param array $referer :引用頁
- * @return 錯誤回傳:false 正確回傳:結果內容
- *
- * 回傳解析後的URL,GET方式時會用到
- *
- * @param string $url :URL
- * @param array $params :加在URL後的參數
- * @return string
- * 蒸發函數_parseUrl($url,$params) { $fieldStr = $this->_parsmEncode($params); if($fieldStr){ $url .= strstr ($url,'?')===假? '?
-
- /**
- * 매개변수 ENCODE
- *
- * @param array $params: 매개변수
- * @param bool $isRetStr: true: 문자열로 반환 false: 배열로 반환
- * @ return string | | 배열
- */
- 비공개 함수 _parsmEncode($params,$isRetStr=true)
- {
- $fieldStr = '';
- $spr = '' ;
- $result = array();
- foreach($params as $key=>$value){
- $value = urlencode($value);
- $fieldStr .= $spr. $키 .'='. $value;
- $spr = '&';
- $result[$key] = $value;
- }
- return $isRetStr ? $fieldStr : $result;
- }
- }
复代码
|