[유용한팁]Kisa OpenAPI Whois 정보 (XML) 데이터 파싱하기

· 2011-10-18 (화) 16:23:37 · 3858
class XmlParser
{
public $parser;
public $depth=0;
public $termStack;
public $nodeData;
public $fullParseData;
public $prevdepth;
public $uri;
public $last_node;
public $inside_data;

function XmlParser($uri)
{
$this->setURI($uri);
$this->run();
}

function run()
{
$this->termStack = array();
$this->xmlInit();
$this->parsing();
}

function setURI($uri)
{
$this->uri = $uri;
}

function xmlInit()
{
$this->parser = xml_parser_create();
if(!$this->parser) echo "Parser Error<br>";
if(!xml_set_object($this->parser, $this)) echo "xml set object error<br>";
if(!xml_set_element_handler($this->parser, "tag_open", "tag_close")) echo "handler set error<br>";
if(!xml_set_character_data_handler($this->parser, "cdata")) echo "cdata handler error<br>";
}

function cdata($parser, $cdata)
{
if($this->depth > $this->prevdepth)
{
if($this->inside_data)
$this->nodeData[$this->nodeName()] .= $cdata;
else
$this->nodeData[$this->nodeName()] = $cdata;
$this->last_node = $this->nodeName();
}
$this->inside_data=true;
}

function getData($node=null)
{
if($node == null)
{
return $this->fullParseData;
}
return $this->fullParseData[$node];
}

function parsing()
{
$fp = fopen($this->uri, "r");
if(!$fp)
{
return 0;
}
while($data = fread($fp, 9182))
{
$this->parse($data);
}
fclose($fp);
return 1;
}

function parse($data)
{
if(!xml_parse($this->parser, $data)) echo xml_error_string(xml_get_error_code($this->parser));
}

function getpNode($depth=0)
{
if($depth != 0)
{
$node=count($this->termStack) + $depth;
$stack = array_slice($this->termStack, 0, $node);
}
else
{
$stack = $this->termStack;
}
return join("/",$stack);
}

function pushStack($name)
{
array_push($this->termStack, $name);
}


function getStackSize()
{
return count($this->termStack);
}

function tag_open($parser, $tag, $attributes)
{
$this->pushStack($tag);
if($this->depth > $this->prevdepth)
{
if(count($this->nodeData))
{
$last_node = $this->getpNode(-2);
$this->fullParseData[$last_node] = $this->nodeData;
}
$this->nodeData=array();
$this->prevdepth = $this->depth;
}
$this->depth++;
$this->inside_data=false;
}

function tag_close($parser, $tag)
{
$count = count($this->nodeData);
if($count == 0)
array_pop($this->termStack);
$this->depth--;
if($this->depth < $this->prevdepth)
{
if(count($this->nodeData) > 1)
$this->fullParseData[$this->getpNode()][] = $this->nodeData;
else
$this->fullParseData[$this->getpNode()] = $this->nodeData;
$this->nodeData=array();
}
else
{
$this->prevdepth = $this->depth;
}
if($count != 0)
array_pop($this->termStack);
$this->inside_data=false;
}

function nodeName()
{
return $this->termStack[$this->depth-1];
}

}
$parser = new XmlParser('http://whois.kisa.or.kr/openapi/whois.jsp?query='.$ip.'&key=키값');
//print_r($parser);
$items = $parser->getData('WHOIS/KOREAN/USER/TECHCONTACT');
//print_r($items);
foreach($items as $item)
{
$name = $item['NAME'];
$addr = $item['ADDR'];
$phone = $item['PHONE'];
$email = $item['EMAIL'];
}


-----------------------------------------------------------------------------------------------------------

위의 소스는 kisa 에서 지원하는 OpenAPI 의 키를 우선 등록하셔서 사용할 수 있습니다.
선행되어야 하는 작업은 ip 를 받는것입니다.
뭐 $_REQUEST 로 받은 REMOTE_ADDR 로 받든 ip 를 받아내서 그 정보를
kisa 쪽으로 전달해주면 xml 로 return 받을것입니다.
그 값을 저희는 짤라서 쓰기 편하게 파싱작업을 하는것이구요.
foreach 문에서 받은 데이터의 배열을 쓰기편하게 짤라주면 됩니다.
굳이 수정을 한다면 아래 부분만 고쳐 쓰면 됩니다.

$parser = new XmlParser('http://whois.kisa.or.kr/openapi/whois.jsp?query='.$ip.'&key=키값'); // kisa 서버 경로
//print_r($parser);
$items = $parser->getData('WHOIS/KOREAN/USER/TECHCONTACT'); //xml 구조
//print_r($items);
foreach($items as $item)
{
$name = $item['NAME']; //데이터들
$addr = $item['ADDR'];
$phone = $item['PHONE'];
$email = $item['EMAIL'];
}
혹 작업간에 에러가 나거나 출력이 잘 안될때를 대비해 어디서든 디코드가 가능하도록 print_r 사용의 생활화가 되어야 합니다.
늘 주석으로 꼭 포함해서 소스 확인하는 습관을 가지면 더욱 좋습니다.

그럼 이만..<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]</div>
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
12-08-29 조회 3,877
12-08-07 조회 3,558
12-08-03 조회 3,494
12-07-31 조회 3,609
12-07-30 조회 3,568
12-07-16 조회 3,765
12-07-15 조회 3,463
12-07-07 조회 3,461
12-07-06 조회 3,553
12-07-03 조회 3,623
12-06-29 조회 3,212
12-06-22 조회 3,578
12-06-17 조회 3,676
12-05-21 조회 3,759
12-05-02 조회 3,349
12-05-02 조회 4,138
12-05-02 조회 3,252
12-04-30 조회 3,382
12-04-30 조회 3,098
12-03-17 조회 3,898
12-03-10 조회 3,327
12-03-08 조회 3,740
12-03-03 조회 3,506
12-02-27 조회 4,916
12-02-17 조회 4,260
12-02-16 조회 4,407
12-02-03 조회 3,257
12-01-31 조회 2,993
12-01-24 조회 3,068
12-01-17 조회 3,814
12-01-05 조회 3,379
11-12-30 조회 2,990
11-12-23 조회 4,587
11-12-08 조회 3,304
11-12-07 조회 4,325
11-11-27 조회 3,760
11-11-25 조회 4,022
11-11-23 조회 3,430
11-11-22 조회 3,393
11-11-09 조회 3,171
11-10-23 조회 3,070
11-10-19 조회 3,048
11-10-08 조회 2,753
11-10-04 조회 2,771
11-10-04 조회 5,211
11-09-01 조회 4,268
11-08-13 조회 2,443
11-08-06 조회 3,132
11-07-11 조회 3,495
11-06-27 조회 2,900
11-06-21 조회 2,516
11-06-13 조회 2,350
11-06-07 조회 2,335
11-05-26 조회 2,340
11-04-20 조회 2,669
11-03-21 조회 2,762
11-03-18 조회 2,458
11-03-11 조회 2,483
11-02-07 조회 2,310
11-01-18 조회 2,637
11-01-12 조회 2,325
11-01-06 조회 2,475
10-12-10 조회 2,736
10-12-09 조회 2,379
10-12-08 조회 4,984
10-11-29 조회 2,473
10-11-28 조회 2,714
10-11-28 조회 2,543
10-11-19 조회 2,740
10-11-04 조회 2,663
10-10-21 조회 2,382
10-10-19 조회 3,331
10-10-12 조회 2,656
10-10-07 조회 2,448
10-09-30 조회 3,440
10-09-17 조회 3,838
10-09-17 조회 3,798
10-05-31 조회 3,463
09-12-31 조회 3,606
09-07-23 조회 4,898
08-09-16 조회 3,165
08-09-06 조회 2,886
08-09-04 조회 3,282
08-08-16 조회 4,365
08-08-15 조회 3,242
08-08-14 조회 4,454
08-08-12 조회 3,811
08-07-23 조회 2,741
08-07-10 조회 3,678
08-07-04 조회 2,907
08-06-27 조회 7,564
08-06-19 조회 4,852
08-05-27 조회 5,463
08-05-25 조회 5,289
08-05-23 조회 3,362
08-05-23 조회 4,464
08-05-21 조회 4,844
08-05-20 조회 4,009
08-05-20 조회 3,247
08-04-18 조회 4,240