-
-
/** - * Tencent QQ Weibo API 인터페이스를 사용하여 Weibo 콘텐츠 획득
- * by bbs.it-home.org
- */
- define('HDOM_TYPE_ELEMENT', 1);
- define('HDOM_TYPE_COMMENT', 2);
- define('HDOM_TYPE_TEXT', 3);
- define('HDOM_TYPE_ENDTAG', 4);
- define('HDOM_TYPE_ROOT', 5);
- 정의('HDOM_TYPE_UNKNOWN', 6);
- define('HDOM_QUOTE_DOUBLE', 0);
- define('HDOM_QUOTE_SINGLE', 1);
- define('HDOM_QUOTE_NO', 3);
- define( 'HDOM_INFO_BEGIN', 0);
- define('HDOM_INFO_END', 1);
- define('HDOM_INFO_QUOTE', 2);
- define('HDOM_INFO_SPACE', 3);
- define('HDOM_INFO_TEXT ', 4);
- define('HDOM_INFO_INNER', 5);
- define('HDOM_INFO_OUTER', 6);
- define('HDOM_INFO_ENDSPACE',7);
- // 도우미 함수
- // ---------------
- // html dom 양식 파일 가져오기
- function file_get_html() {
- $dom = new simple_html_dom;
- $args = func_get_args();
- $dom->load(call_user_func_array('file_get_contents', $args), true);
- return $dom;
- }
- // html dom 형식 문자열 가져오기
- function str_get_html($str, $lowercase=true) {
- $dom = new simple_html_dom;
- $dom->load($str, $lowercase);
- return $dom;
- }
- // html DOM 트리 덤프
- function dump_html_tree($node, $show_attr=true, $deep=0) {
- $lead = str_repeat(' ', $deep);
- echo $ Lead.$node->tag;
- if ($show_attr && count($node->attr)>0) {
- echo '(';
- foreach($node->attr as $k=>$v)
- echo "[$k]=>"".$node->$k.'", ';
- echo ')';
- }
- echo "n";
- foreach($node->nodes as $c)
- dump_html_tree($c, $show_attr, $deep 1);
- }
- // DOM 형식 가져오기 파일(비PRecated)
- function file_get_dom() {
- $dom = new simple_html_dom;
- $args = func_get_args();
- $dom->load(call_user_func_array('file_get_contents', $args) , true);
- return $dom;
- }
- // DOM 형식 문자열 가져오기(더 이상 사용되지 않음)
- function str_get_dom($str, $lowercase=true) {
- $dom = new simple_html_dom ;
- $dom->load($str, $lowercase);
- return $dom;
- }
- // 간단한 html dom 노드
- // ------- --------
- class simple_html_dom_node {
- public $nodetype = HDOM_TYPE_TEXT;
- public $tag = 'text';
- public $attr = array();
- public $ children = array();
- public $nodes = array();
- public $parent = null;
- public $_ = array();
- private $dom = null;
- 함수 __construct($dom) {
- $this->dom = $dom;
- $dom->nodes[] = $this;
- }
- 함수 __destruct() {
- $ this->clear();
- }
- function __toString() {
- return $this->outertext();
- }
- // php5 순환 참조로 인해 메모리 정리 메모리 누수...
- 함수 Clear() {
- $this->dom = null;
- $this->nodes = null;
- $this->parent = null;
- $this->children = null;
- }
// 노드의 트리를 덤프합니다
- function dump($show_attr=true) {
- dump_html_tree($this, $show_attr);
- }
- // 노드의 부모를 반환합니다
- function parent() {
- return $this->parent;
- }
- // 노드의 하위 항목을 반환합니다.
- function children($idx=-1) {
- if ($idx===-1 ) return $this->children;
- if (isset($this->children[$idx])) return $this->children[$idx];
- return null;
- }
- // 노드의 첫 번째 자식을 반환합니다
- function first_child() {
- if (count($this->children)>0) return $this->children[0];
- return null;
- }
- // 노드의 마지막 자식을 반환합니다
- function last_child() {
- if (($count=count($this->children))>0) return $this->children[$count-1];
- return null;
- }
- // 노드의 다음 형제를 반환합니다.
- function next_sibling() {
- if ($this ->parent===null) return null;
- $idx = 0;
- $count = count($this->parent->children);
- while ($idx<$count && $this!==$this->parent->children[$idx])
- $idx;
- if ( $idx>=$count) return null;
- return $this-> ;부모->자녀[$idx];
- }
- // 노드의 이전 형제를 반환합니다.
- function prev_sibling() {
- if ($this->parent===null) return null;
- $idx = 0;
- $ count = count($this->parent->children);
- while ($idx<$count && $this!==$this->parent->children[$idx])
- $idx;
- if (--$idx<0) return null;
- return $this->parent->children[$idx];
- }
- // dom 노드의 내부 가져오기 html
- function innertext() {
- if (isset($this->_[HDOM_INFO_INNER])) return $this->_[HDOM_INFO_INNER];
- if (isset($this-> _[HDOM_INFO_TEXT])) return $this->dom->restore_noise($this->_[HDOM_INFO_TEXT]);
- $ret = '';
- foreach($this->nodes as $n)
- $ret .= $n->outertext();
- return $ret;
- }
- // DOM 노드의 외부 텍스트 가져오기(태그 포함)
- function externaltext( ) {
- if ($this->tag==='root') return $this->innertext();
- // 콜백 트리거
- if ($this->dom-> ;callback!==null)
- call_user_func_array($this->dom->callback, array($this));
- if (isset($this->_[HDOM_INFO_OUTER])) return $ this->_[HDOM_INFO_OUTER];
- if (isset($this->_[HDOM_INFO_TEXT])) return $this->dom->restore_noise($this->_[HDOM_INFO_TEXT]);
- // 시작 태그 렌더링
- $ret = $this->dom->nodes[$this->_[HDOM_INFO_BEGIN]]->makeup();
- // 내부 텍스트 렌더링
- if (isset($this->_[HDOM_INFO_INNER]))
- $ret .= $this->_[HDOM_INFO_INNER];
- else {
- foreach($this-> 노드를 $n으로)
- $ret .= $n->outertext();
- }
- // 종료 태그 렌더링
- if(isset($this->_[HDOM_INFO_END]) && $this->_[HDOM_INFO_END]!=0)
- $ret .= ''.$this->tag.'>';
- return $ret;
- }
- // dom 노드의 일반 텍스트 가져오기
- function text() {
- if (isset($this->_[HDOM_INFO_INNER])) return $this->_[HDOM_INFO_INNER];
- 스위치 ($this->nodetype) {
- 케이스 HDOM_TYPE_TEXT: return $this->dom->restore_noise($this->_[HDOM_INFO_TEXT]);
- 케이스 HDOM_TYPE_COMMENT: return '';
- 케이스 HDOM_TYPE_UNKNOWN: return '';
- }
- if (strcasecmp($this->tag, 'script')===0) return '';
- if (strcasecmp($this- >tag, 'style')===0) return '';
- $ret = '';
- foreach($this->nodes as $n)
- $ret .= $n ->text();
- return $ret;
- }
function xmltext() {
- $ret = $this->innertext();
- $ret = str_ireplace(' $ret = str_replace(']]>', '', $ret);
- return $ret;
- }
- // 태그로 노드의 텍스트 작성
- function make() {
- // 텍스트, 댓글, 알 수 없음
- if (isset($this->_[HDOM_INFO_TEXT])) return $this->dom->restore_noise($this->_[HDOM_INFO_TEXT]);
- $ ret = '<'.$this->tag;
- $i = -1;
- foreach($this->attr as $key=>$val) {
- $i;
- // 제거된 속성 건너뛰기
- if ($val===null || $val===false)
- continue;
- $ret .= $this->_[HDOM_INFO_SPACE][ $i][0];
- //값 없음 속성: nowrap, 선택됨...
- if ($val===true)
- $ret .= $key;
- else {
- switch($this->_[HDOM_INFO_QUOTE][$i]) {
- 케이스 HDOM_QUOTE_DOUBLE: $quote = '"'; break;
- 케이스 HDOM_QUOTE_SINGLE: $quote = '''; break;
- 기본값: $quote = '';
- }
- $ret .= $key.$this->_[HDOM_INFO_SPACE][$i][1].'='.$this ->_[HDOM_INFO_SPACE][$i][2].$quote.$val.$quote;
- }
- }
- $ret = $this->dom->restore_noise($ ret);
- $ret를 반환합니다. $this->_[HDOM_INFO_ENDSPACE] . '>';
- }
- // CSS 선택기로 요소 찾기
- function find($selector, $idx=null) {
- $selectors = $this->parse_selector($selector);
- if (($count =count($selectors))===0) return array();
- $found_keys = array();
- // 각 선택기 찾기
- for ($c=0; $c<$count ; $c) {
- if (($levle=count($selectors[0]))===0) return array();
- if (!isset($this->_[HDOM_INFO_BEGIN] )) return array();
- $head = array($this->_[HDOM_INFO_BEGIN]=>1);
- // 하위 선택기 처리, 재귀 없음!
- for ($l= 0; $l<$levle; $l) {
- $ret = array();
- foreach($k=>$v로 $head) {
- $n = ($k== =-1) ? $this->dom->root : $this->dom->nodes[$k];
- $n->seek($selectors[$c][$l], $ret) ;
- }
- $head = $ret;
- }
- foreach($head as $k=>$v) {
- if (!isset($found_keys[$k]) )
- $found_keys[$k] = 1;
- }
- }
- // 키 정렬
- ksort($found_keys);
- $found = array();
- foreach($found_keys as $k=>$v)
- $found[] = $this->dom->nodes[$k];
- // n번째 요소 또는 배열 반환
- if (is_null($idx)) return $found;
- else if ($idx<0) $idx = count($found) $idx;
- return (isset($found[$idx])) ? $found[$idx] : null;
- }
- // 주어진 조건 찾기
- protected functioneek($selector, &$ret) {
- list($tag, $key, $val , $exp, $no_key) = $selector;
- // xpath 인덱스
- if ($tag && $key && is_numeric($key)) {
- $count = 0;
- foreach ($ this->children as $c) {
- if ($tag==='*' || $tag===$c->tag) {
- if ( $count==$key) {
- $ret[$c->_[HDOM_INFO_BEGIN]] = 1;
- 반환;
- }
- }
- }
- 반환;
- }
- $ 끝 = (!empty($this->_[HDOM_INFO_END])) ? $this->_[HDOM_INFO_END] : 0;
- if ($end==0) {
- $parent = $this->parent;
- while (!isset($parent-> _[HDOM_INFO_END]) && $parent!==null) {
- $end -= 1;
- $parent = $parent->parent;
- }
- $end = $parent-> ;_[HDOM_INFO_END];
- }
- for($i=$this->_[HDOM_INFO_BEGIN] 1; $i<$end; $i) {
- $node = $this-> dom->nodes[$i];
- $pass = true;
- if ($tag==='*' && !$key) {
- if (in_array($node, $this- >children, true))
- $ret[$i] = 1;
- continue;
- }
- // 태그 비교
- if ($tag && $tag!=$node- >tag && $tag!=='*') {$pass=false;}
- // 키 비교
- if ($pass && $key) {
- if ($no_key) {
- if (isset($node->attr[$key])) $pass=false;
- }
- else if (!isset($node->attr[$key])) $pass= false;
- }
- // 값 비교
- if ($pass && $key && $val && $val!=='*') {
- $check = $this->match( $exp, $val, $node->attr[$key]);
- // 여러 클래스 처리
- if (!$check && strcasecmp($key, 'class')===0) {
- foreach(explode(' ',$node->attr[$key]) as $k) {
- $check = $this->match($exp, $val, $k);
- if ($check) break;
- }
- }
- if (!$check) $pass = false;
- }
- if ($pass) $ret[$i] = 1;
- unset($node);
- }
- }
- 보호 함수 match($exp, $pattern, $value) {
- 스위치($exp) {
- 케이스 ' =':
- return ($value===$pattern);
- case '!=':
- return ($value!==$pattern);
- case '^=':
- return preg_match("/^".preg_quote($pattern,'/')."/", $value);
- case '$=':
- return preg_match("/".preg_quote($ 패턴,'/')."$/", $value);
- 케이스 '*=':
- if ($pattern[0]=='/')
- return preg_match($pattern, $value);
- return preg_match("/".$pattern."/i", $value);
- }
- return false;
- }
- 보호 함수 parse_selector($selector_string) {
- // mootools에서 수정된 CSS 선택기 패턴
- $pattern = "/([w-:*]*)(?:#([w-] )|.([w-] ))?(?:[@?(!?[w-] )(?:([!*^$]?=)["']?(.*?)[" ']?)?])?([/, ] )/is";
- preg_match_all($pattern, Trim($selector_string).' ', $matches, PREG_SET_ORDER);
- $selectors = array() ;
- $result = array();
- //print_r($matches);
- foreach ($matches as $m) {
- $m[0] = Trim($m[0] );
- if ($m[0]==='' || $m[0]==='/' || $m[0]==='//') 계속;
- // grnreated xpath
- if ($m[1]==='tbody') continue;
- list($tag, $key, $val, $exp, $no_key) = array($m [1], null, null, '=', false);
- if(!empty($m[2])) {$key='id'; $val=$m[2];}
- if(!empty($m[3])) {$key='class'; $val=$m[3];}
- if(!empty($m[4])) {$key=$m[4];}
- if(!empty($m[5]) ) {$exp=$m[5];}
- if(!empty($m[6])) {$val=$m[6];}
- // 소문자로 변환
- if ($this->dom->소문자) {$tag=strtolower($tag); $key=strtolower($key);}
- //지정된 속성이 없는 요소
- if (isset($key[0]) && $key[0]==='!') { $key=substr($key, 1); $no_key=true;}
- $result[] = array($tag, $key, $val, $exp, $no_key);
- if (trim($m[7])===', ') {
- $selectors[] = $result;
- $result = array();
- }
- }
- if (count($result)>0)
- $ selectors[] = $result;
- return $selectors;
- }
- function __get($name) {
- if (isset($this->attr[$name])) return $this ->attr[$name];
- switch($name) {
- case 'outertext': return $this->outertext();
- case 'innertext': return $this-> innertext();
- 케이스 '일반 텍스트': return $this->text();
- 케이스 'xmltext': return $this->xmltext();
- 기본값: return array_key_exists($name , $this->attr);
- }
- }
- function __set($name, $value) {
- switch($name) {
- case 'outertext': return $this ->_[HDOM_INFO_OUTER] = $value;
- case 'innertext':
- if (isset($this->_[HDOM_INFO_TEXT])) return $this->_[HDOM_INFO_TEXT] = $value ;
- return $this->_[HDOM_INFO_INNER] = $value;
- }
- if (!isset($this->attr[$name])) {
- $this-> ;_[HDOM_INFO_SPACE][] = array(' ', '', '');
- $this->_[HDOM_INFO_QUOTE][] = HDOM_QUOTE_DOUBLE;
- }
- $this->attr[$name] = $value;
- }
- 함수 __isset($name ) {
- switch($name) {
- case 'outertext': return true;
- case 'innertext': return true;
- case 'plaintext': return true;
- }
- //값 없음 속성: 이제 랩, 선택됨...
- return (array_key_exists($name, $this->attr)) ? true : isset($this->attr[$name]);
- }
- function __unset($name) {
- if (isset($this->attr[$name]))
- unset($this->attr[$name]);
- }
- // 카멜 명명 규칙
- function getAllAttributes() {return $this->attr;}
- function getAttribute ($name) {return $this->__get($name);}
- 함수 setAttribute($name, $value) {$this->__set($name, $value);}
- 함수 hasAttribute($name) {return $this->__isset($name);}
- function RemoveAttribute($name) {$this->__set($name, null);}
- function getElementById($ id) {return $this->find("#$id", 0);}
- function getElementsById($id, $idx=null) {return $this->find("#$id", $idx);}
- 함수 getElementByTagName($name) {return $this->find($name, 0);}
- function getElementsByTagName($name, $idx=null) {return $this-> ;find($name, $idx);}
- function parentNode() {return $this->parent();}
- function childNodes($idx=-1) {return $this->children ($idx);}
- function firstChild() {return $this->first_child();}
- function lastChild() {return $this->last_child();}
- function nextSibling( ) {return $this->next_sibling();}
- function PreviousSibling() {return $this->prev_sibling();}
- }
- // 간단한 HTML DOM 파서
- // ----------------------- ---------------
- class simple_html_dom {
- 공개 $root = null;
- 공개 $nodes = 배열();
- 공개 $callback = null;
- 공개 $lowercase = false;
- 보호 $pos;
- 보호 $doc;
- protected $char;
- protected $size;
- protected $cursor;
- protected $parent;
- protected $noise = array();
- protected $token_blank = " trn";
- protected $token_equal = ' =/>';
- protected $token_slash = " />rnt";
- protected $token_attr = ' >';
- // in_array 대신 isset을 사용합니다. 약 30% 성능 향상...
- protected $self_closing_tags = array('img'=>1, 'br'=>1, 'input'=>1, 'meta'=>1, ' link'=>1, 'hr'=>1, 'base'=>1, 'embed'=>1, 'spacer'=>1);
- protected $block_tags = array(' root'=>1, 'body'=>1, 'form'=>1, 'div'=>1, 'span'=>1, 'table'=>1);
- protected $ional_closing_tags = array(
- 'tr'=>array('tr'=>1, 'td'=>1, 'th'=>1),
- 'th'= >array('th'=>1),
- 'td'=>array('td'=>1),
- 'li'=>array('li'=> 1),
- 'dt'=>array('dt'=>1, 'dd'=>1),
- 'dd'=>array('dd'=>1, 'dt'=>1),
- 'dl'=>array('dd'=>1, 'dt'=>1),
- 'p'=>array('p '=>1),
- 'nobr'=>array('nobr'=>1),
- );
- function __construct($str=null) {
- if ($ str) {
- if (preg_match("/^http:///i",$str) || is_file($str))
- $this->load_file($str);
- else
- $this->load($str);
- }
- }
- http://www.devdao.com/
- function __destruct() {
- $this->clear();
- }
- // 문자열에서 html 로드
- function load($str, $lowercase=true) {
- // 준비
- $this-> ;prepare($str, $lowercase);
- // 주석 제거
- $this->remove_noise("''is");
- // cdata 제거
- $this->remove_noise("''is", true);
- // < 제거 스타일> 태그
- $this->remove_noise("'
]*[^/]>(.*?)'is") ;
- $this->remove_noise("'
(.*?)'is");
- // < 제거 ;스크립트> 태그
- $this->remove_noise("'
]*[^/]>(.*?)'is") ;
- $this->remove_noise("'
(.*?)'is");
- // 미리 포맷된 부분을 제거합니다. 태그
- $this->remove_noise("'
]*>(.*?) // 서버 측 스크립트 제거- $this->remove_noise("'()(.*?)(?>)'s", true);
- // 똑똑한 스크립트 제거
- $this->remove_noise("'({w)(.*?)(})'s", true);
- // 구문 분석
- while ( $this->parse());
- // 끝
- $this->root->_[HDOM_INFO_END] = $this->cursor;
- }
- // 로드 html 파일
- function load_file() {
- $args = func_get_args();
- $this->load(call_user_func_array('file_get_contents', $args), true);
- }
- // 콜백 함수 설정
- function set_callback($function_name) {
- $this->callback = $function_name;
- }
- // 콜백 함수 제거
- function Remove_callback() {
- $this->callback = null;
- }
- // dom을 문자열로 저장
- function save($filepath='') {
- $ret = $this->root- >innertext();
- if ($filepath!=='') file_put_contents($filepath, $ret);
- return $ret;
- }
- // CSS 선택기로 dom 노드 찾기
- function find($selector, $idx=null) {
- return $this->root->find($selector, $idx);
- }
- // 메모리 정리 예정 php5 순환 참조 메모리 누수...
- functionclear() {
- foreach($this->nodes as $n) {$n->clear(); $n = null;}
- if (isset($this->parent)) {$this->parent->clear(); unset($this->parent);}
- if (isset($this->root)) {$this->root->clear(); unset($this->root);}
- unset($this->doc);
- unset($this->noise);
- }
function dump($show_attr=true) {
- $this->root->dump($show_attr);
- }
- // HTML 데이터를 준비하고 모든 것을 초기화합니다
- protected function prepare($ str, $lowercase=true) {
- $this->clear();
- $this->doc = $str;
- $this->pos = 0;
- $this ->cursor = 1;
- $this->noise = array();
- $this->nodes = array();
- $this->lowercase = $lowercase;
- $this->root = new simple_html_dom_node($this);
- $this->root->tag = '루트';
- $this->root->_[HDOM_INFO_BEGIN] = -1;
- $this->root->nodetype = HDOM_TYPE_ROOT;
- $this->parent = $this->root;
- // 콘텐츠 길이 설정
- $ this->size = strlen($str);
- if ($this->size>0) $this->char = $this->doc[0];
- }
- // HTML 콘텐츠 구문 분석
- protected function parse() {
- if (($s = $this->copy_until_char('<'))==='')
- return $this-> ;read_tag();
- // 텍스트
- $node = new simple_html_dom_node($this);
- $this->cursor;
- $node->_[HDOM_INFO_TEXT] = $s;
- $this->link_nodes($node, false);
- return true;
- }
- // 태그 정보 읽기
- protected function read_tag() {
- if ($this ->char!=='<') {
- $this->root->_[HDOM_INFO_END] = $this->cursor;
- return false;
- }
- $begin_tag_pos = $this->pos;
- $this->char = ( $this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
- // 종료 태그
- if ($this->char==='/') {
- $this->char = ( $this->pos<$this- >사이즈) ? $this->doc[$this->pos] : null; // next
- $this->skip($this->token_blank_t);
- $tag = $this->copy_until_char('>');
- // 끝 태그의 속성을 건너뜁니다.
- if (($pos = strpos($tag, ' '))!==false)
- $tag = substr($tag, 0, $pos);
- $parent_lower = strtolower($this ->parent->tag);
- $tag_lower = strtolower($tag);
- if ($parent_lower!==$tag_lower) {
- if (isset($this->선택적_closing_tags[ $parent_lower]) && isset($this->block_tags[$tag_lower])) {
- $this->parent->_[HDOM_INFO_END] = 0;
- $org_parent = $this-> parent;
- while (($this->parent->parent) && strtolower($this->parent->tag)!==$tag_lower)
- $this->parent = $ this->parent->parent;
- if (strtolower($this->parent->tag)!==$tag_lower) {
- $this->parent = $org_parent; // 원래 부모 복원
- if ($this->parent->parent) $this->parent = $this->parent->parent;
- $this->parent-> ;_[HDOM_INFO_END] = $this->cursor;
- return $this->as_text_node($tag);
- }
- }
- else if (($this->parent- >parent) && isset($this->block_tags[$tag_lower])) {
- $this->parent->_[HDOM_INFO_END] = 0;
- $org_parent = $this-> parent;
- while (($this->parent->parent) && strtolower($this->parent->tag)!==$tag_lower)
- $this->parent = $ this->parent->parent;
- if (strtolower($this->parent->tag)!==$tag_lower) {
- $this->parent = $org_parent; // 원래 부모 복원
- $this->parent->_[HDOM_INFO_END] = $this->cursor;
- return $this->as_text_node($tag);
- }
- }
- else if (($this->parent->parent) && strtolower($this->parent->parent->tag)===$tag_lower) {
- $this ->parent->_[HDOM_INFO_END] = 0;
- $this->parent = $this->parent->parent;
- }
- else
- return $this- >as_text_node($tag);
- }
- $this->parent->_[HDOM_INFO_END] = $this->cursor;
- if ($this->parent->parent) $this->parent = $this- >parent->parent;
- $this->char = ( $this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
- return true;
- }
- $node = new simple_html_dom_node($this);
- $node->_[HDOM_INFO_BEGIN] = $this->cursor;
- $ this->cursor;
- $tag = $this->copy_until($this->token_slash);
- // doctype, cdata 및 주석...
- if (isset($tag[ 0]) && $tag[0]==='!') {
- $node->_[HDOM_INFO_TEXT] = '<' . $ 태그 . $this->copy_until_char('>');
- if (isset($tag[2]) && $tag[1]==='-' && $tag[2]==='-' ) {
- $node->nodetype = HDOM_TYPE_COMMENT;
- $node->tag = 'comment';
- } else {
- $node->nodetype = HDOM_TYPE_UNKNOWN;
- $ node->tag = '알 수 없음';
- }
- if ($this->char==='>') $node->_[HDOM_INFO_TEXT].='>';
- $this->link_nodes($node, true);
- $this->char = ( $this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
- return true;
- }
- // text
- if ($pos=strpos($tag, '<')!==false) {
- $tag = ' <' . substr($tag, 0, -1);
- $node->_[HDOM_INFO_TEXT] = $tag;
- $this->link_nodes($node, false);
- $this-> ;char = $this->doc[--$this->pos]; // prev
- return true;
- }
- if (!preg_match("/^[w-:] $/", $tag)) {
- $node->_[HDOM_INFO_TEXT] = '<' . $ 태그 . $this->copy_until('<>');
- if ($this->char==='<') {
- $this->link_nodes($node, false) ;
- true를 반환합니다.
- }
- if ($this->char==='>') $node->_[HDOM_INFO_TEXT].='>';
- $ this->link_nodes($node, false);
- $this->char = ( $this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
- return true;
- }
- // 태그 시작
- $node->nodetype = HDOM_TYPE_ELEMENT;
- $tag_lower = strtolower($tag);
- $node- >태그 = ($this->소문자) ? $tag_lower : $tag;
- // 선택적 닫는 태그 처리
- if (isset($this->ional_closing_tags[$tag_lower]) ) {
- while (isset($this->ional_closing_tags[$ tag_lower][strtolower($this->parent->tag)])) {
- $this->parent->_[HDOM_INFO_END] = 0;
- $this->parent = $ this->parent->parent;
- }
- $node->parent = $this->parent;
- }
- $guard = 0; // 무한 루프 방지
- $space = array($this->copy_skip($this->token_blank), '', '');
- // 속성
- do {
- if ($this->char!==null && $space[0]==='') break;
- $name = $this->copy_until($this->token_equal);
- if ($guard===$this->pos) {
- $this->char = ( $this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
- continue;
- }
- $guard = $this->pos;
- // 끝없는 '<'
- 처리 if($this->pos>=$ this->size-1 && $this->char!=='>') {
- $node->nodetype = HDOM_TYPE_TEXT;
- $node->_[HDOM_INFO_END] = 0;
- $node->_[HDOM_INFO_TEXT] = '<'.$tag . $space[0] . $name;
- $node->tag = 'text';
- $this->link_nodes($node, false);
- return true;
- }
- // 불일치 처리 '<'
- if($this->doc[$this->pos-1]=='<') {
- $node->nodetype = HDOM_TYPE_TEXT;
- $node->tag = 'text';
- $node->attr = array();
- $node->_[HDOM_INFO_END] = 0;
- $node ->_[HDOM_INFO_TEXT] = substr($this->doc, $begin_tag_pos, $this->pos-$begin_tag_pos-1);
- $this->pos -= 2;
- $ this->char = ( $this->pos<$this->size) ? $this->doc[$this->pos] : null; // 다음
- $this->link_nodes($node, false);
- return true;
- }
- if ($name!=='/' && $name!=='' ) {
- $space[1] = $this->copy_skip($this->token_blank);
- $name = $this->restore_noise($name);
- if ($this ->소문자) $name = strtolower($name);
- if ($this->char==='=') {
- $this->char = ( $this->pos< ;$this->크기) ? $this->doc[$this->pos] : null; // next
- $this->parse_attr($node, $name, $space);
- }
- else {
- //값 없음 속성: nowrap, 선택됨...
- $node->_[HDOM_INFO_QUOTE][] = HDOM_QUOTE_NO;
- $node->attr[$name] = true;
- if ($this->char!='>') $ this->char = $this->doc[--$this->pos]; // 이전
- }
- $node->_[HDOM_INFO_SPACE][] = $space;
- $space = array($this->copy_skip($this->token_blank), '' , '');
- }
- else
- break;
- } while($this->char!=='>' && $this->char!=='/' );
- $this->link_nodes($node, true);
- $node->_[HDOM_INFO_ENDSPACE] = $space[0];
- // 자동 종료 확인
- if ( $this->copy_until_char_escape('>')==='/') {
- $node->_[HDOM_INFO_ENDSPACE] .= '/';
- $node->_[HDOM_INFO_END] = 0;
- }
- else {
- // 부모 재설정
- if (!isset($this->self_closing_tags[strtolower($node->tag)])) $this-> ;parent = $node;
- }
- $this->char = ( $this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
- return true;
- }
- // 속성 구문 분석
- protected function parse_attr($node, $name, &$space) {
- $space[2] = $this- >copy_skip($this->token_blank);
- switch($this->char) {
- case '"':
- $node->_[HDOM_INFO_QUOTE][] = HDOM_QUOTE_DOUBLE;
- $this->char = ( $this->pos<$this->size) ? $this->doc[$this->pos] : // 다음
- $ node->attr[$name] = $this->restore_noise($this->copy_until_char_escape('"'));
- $this->char = ( $this->pos<$this -> 사이즈) ? $this->doc[$this->pos] : null; // 다음
- break;
- 케이스 ''':
- $node->_[HDOM_INFO_QUOTE][] = HDOM_QUOTE_SINGLE;
- $this->char = ( $this->pos< ;$this->크기) ? $this->doc[$this->pos] : null; // 다음
- $node->attr[$name] = $this->restore_noise($this->copy_until_char_escape('''));
- $this->char = ( $this ->위치크기) ? $this->doc[$this->pos] : null; // 다음
- break;
- 기본값:
- $node->_[HDOM_INFO_QUOTE][] = HDOM_QUOTE_NO;
- $node->attr[$name] = $this->restore_noise ($this->copy_until($this->token_attr));
- }
- }
- // 링크 노드의 상위
- 보호 함수 link_nodes(&$node, $is_child) {
- $node->parent = $this->parent;
- $this->parent->nodes[] = $node;
- if ($is_child)
- $this-> parent->children[] = $node;
- }
- // 텍스트 노드로
- 보호 함수 as_text_node($tag) {
- $node = new simple_html_dom_node($this);
- $this->cursor;
- $node->_[HDOM_INFO_TEXT] = '' . $ 태그 . '>';
- $this->link_nodes($node, false);
- $this->char = ( $this->pos<$this->size) ? $this->doc[$this->pos] : null; // 다음
- true를 반환합니다.
- }
- 보호된 함수 건너뛰기($chars) {
- $this->pos = strspn($this->doc, $chars, $this->pos);
- $this->char = ($this->pos<$this->크기) ? $this->doc[$this->pos] : null; // next
- }
- 보호 함수 copy_skip($chars) {
- $pos = $this->pos;
- $len = strspn($this->doc, $chars, $ pos);
- $this->pos = $len;
- $this->char = ($this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
- if ($len===0) return '';
- return substr($this->doc, $pos, $len);
- }
- 보호 함수 copy_until( $chars) {
- $pos = $this->pos;
- $len = strcspn($this->doc, $chars, $pos);
- $this->pos = $ len;
- $this->char = ($this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
- return substr($this->doc, $pos, $len);
- }
- 보호 함수 copy_until_char($char) {
- if ($this->char= ==null) return '';
- if (($pos = strpos($this->doc, $char, $this->pos))===false) {
- $ret = substr ($this->doc, $this->pos, $this->size-$this->pos);
- $this->char = null;
- $this-> pos = $this->size;
- return $ret;
- }
- if ($pos===$this->pos) return '';
- $pos_old = $this- >pos;
- $this->char = $this->doc[$pos];
- $this->pos = $pos;
- return substr($this->doc , $pos_old, $pos-$pos_old);
- }
- 보호 함수 copy_until_char_escape($char) {
- if ($this->char===null) return '';
- $ start = $this->pos;
- while(1) {
- if (($pos = strpos($this->doc, $char, $start))===false) {
- $ret = substr($this->doc, $this->pos, $this->size-$this->pos);
- $this->char = null;
- $this->pos = $this->size;
- return $ret;
- }
- if ($pos===$this->pos) return '';
- if ($this->doc[$pos-1]==='\') {
- $start = $pos 1;
- 계속;
- }
- $pos_old = $this-> ;pos;
- $this->char = $this->doc[$pos];
- $this->pos = $pos;
- return substr($this->doc, $pos_old, $pos-$pos_old);
- }
- }
- // HTML 콘텐츠에서 노이즈 제거
- protected function Remove_noise($pattern, $remove_tag=false) {
- $count = preg_match_all($pattern, $this->doc, $matches, PREG_SET_ORDER|PREG_OFFSET_CAPTURE);
- for ($i=$count-1; $i>-1; --$i) {
- $key = '___noise___'.sprintf('% 3d', count($this->noise) 100);
- $idx = ($remove_tag) ? 0 : 1;
- $this->noise[$key] = $matches[$i][$idx][0];
- $this->doc = substr_replace($this->doc , $key, $matches[$i][$idx][1], strlen($matches[$i][$idx][0]));
- }
- // 콘텐츠 길이 재설정
- $this->size = strlen($this->doc);
- if ($this->size>0) $this->char = $this->doc[0] ;
- }
- // HTML 콘텐츠에 노이즈 복원
- function Restore_noise($text) {
- while(($pos=strpos($text, '__noise___'))!==false) {
- $key = '___noise___'.$text[$pos 11].$text[$pos 12].$text[$pos 13];
- if (isset($this->noise[$key ]))
- $text = substr($text, 0, $pos).$this->noise[$key].substr($text, $pos 14);
- }
- $ 반환 text;
- }
- function __toString() {
- return $this->root->innertext();
- }
- function __get($name) {
- switch( $name) {
- 케이스 '외부 텍스트': return $this->root->innertext();
- 케이스 'innertext': return $this->root->innertext();
- case 'plaintext': return $this->root->text();
- }
- }
- // 낙타 명명 규칙
- function childNodes($idx=-1) {return $this->root->childNodes($idx);}
- function firstChild() {return $this->root->first_child();}
- function lastChild() {return $this ->root->last_child();}
- function getElementById($id) {return $this->find("#$id", 0);}
- function getElementsById($id, $ idx=null) {return $this->find("#$id", $idx);}
- function getElementByTagName($name) {return $this->find($name, 0);}
- 함수 getElementsByTagName($name, $idx=-1) {return $this->find($name, $idx);}
- 함수 loadFile() {$args = func_get_args();$this- >load(call_user_func_array('file_get_contents', $args), true);}
- }
- ?>
-
코드 복사
tqq.php
-
-
/** - 버전: 1.11 ($Rev: 175 $)
- */
- //캐시 시간, 단위: 초
- $t = 360;
- if(!is_file('index.html')||(time()-filemtime('index.html'))>$t){
- // 웨이보 계정
- $qq = 'kuaisubeian';
- //Tencent의 md5_3()으로 암호화된 비밀번호
- $pwd = '624D3274815F2237817A7C62F42DD26A';
- $verifyURL = 'http://ptlogin2 .qq.com /check?uin=@'.$qq.'&appid=46000101';
- $loginURL = 'http://ptlogin2.qq.com/login?';
-
//인증 코드 및 첫 번째 쿠키 받기
- $curl =curl_init($verifyURL);
- $cookie_jar = tempnam('.', 'cookie');
- curl_setopt($curl , CURLOPT_RETURNTRANSFER, 1);
- 컬_setopt($curl, CURLOPT_COOKIEJAR, $cookie_jar);
- $verifyCode = 컬_exec($curl);
- 컬_close($curl);
- $verifyCode = strtoupper(substr ($verifyCode, 18, 4));
- //echo '인증 코드:'.$verifyCode;
- //echo '
';
- // echo 'Cookies:' .$cookie_jar;
- // echo '
';
//로그인 요청을 보내고 두 번째 쿠키를 가져옵니다
- $loginURL .= ' u=@'.$qq .'&p='.md5($pwd.$verifyCode).'&verifycode='.$verifyCode.'&aid=46000101&u1=http://t.qq.com&h=1&from_ui=1&fp=loginerroralert ';
- // echo '로그인 주소:'.$loginURL;
- //echo '
';
- $curl = 컬_init($loginURL);
- 컬_setopt($ 컬, CURLOPT_RETURNTRANSFER, 1); curl_close($curl);
- //echo '로그인 확인 결과:'.$loginResult;
- //echo '
' http:/ /bbs.it-home.org
- //세 번째 쿠키 가져오기
- $curl =curl_init('http://t.qq.com');
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1) ;
- 컬_setopt($curl, CURLOPT_COOKIEJAR, $cookie_jar);
- 컬_setopt($curl, CURLOPT_COOKIEFILE, $cookie_jar);
- 컬_setopt($curl, CURLOPT_COOKIEJAR, $cookie_jar) ;
- $loginResult = 컬_exec ($curl);
- curl_close($curl);
//네번째
- $curl =curl_init('http: //t.qq.com/ '.$qq.'/mine');
- 컬_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
- 컬_setopt($curl, CURLOPT_COOKIEJAR, $cookie_jar);
- 컬_setopt($curl, CURLOPT_COOKIEFILE, $cookie_jar );
- 컬_setopt($curl, CURLOPT_COOKIEJAR, $cookie_jar);
- $loginResult = 컬_exec($curl);
- 컬_close($curl); ($cookie_jar);
- file_put_contents('index.html',$loginResult);
- }
- include('cnz.php');
- $html = file_get_html('index.html') ;
- $talkList = $html->find('#talkList');
- $lastTalk = $talkList[0];
$userName = $lastTalk- >children(0)->children(1)->find('.userName');
- $msgCnt = $lastTalk->children(0)->children(1)->find ('.msgCnt');
- $pubInfo = $lastTalk->children(0)->children(1)->find('.pubInfo');< /p>
- < p>$userName = $userName[0]->plaintext;
$result = '';
- < ;p>//인 경우 2보다 크면 브로드캐스팅됩니다
- if(count($msgCnt) < 10){
- $pi = $pubInfo[0]->find('.left');
- $result = $userName.$msgCnt[0]->plaintext.'
< ;/p> ;
- QQweiboQQ|www.beiantuan.com style="font-style: italic; color: rgb(238, 29, 36);">'.$pi[0]->children(0)->plaintext.' ->children(1)->plaintext.'';
- }else{
- $pi = $pubInfo[1]->find('.left') ;
- $result = $userName.$msgCnt[0]->plaintext.'['.$msgCnt[1]->plaintext.'] '.$pi[0]->plaintext.'';
- }
- echo $result;
- ?>< ;/p> ;
-
-
-
- 코드 복사
-
-
-
|