[유용한팁]Kisa OpenAPI Whois 정보 (XML) 데이터 파싱하기
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>
{
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>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 4330 |
aequum
|
13년 전 | 818 | |
| 4329 | 13년 전 | 1036 | ||
| 4328 |
aequum
|
13년 전 | 1315 | |
| 4327 |
aequum
|
13년 전 | 1391 | |
| 4326 | 13년 전 | 770 | ||
| 4325 |
aequum
|
13년 전 | 914 | |
| 4324 |
aequum
|
13년 전 | 1630 | |
| 4323 |
aequum
|
13년 전 | 2726 | |
| 4322 |
aequum
|
13년 전 | 1980 | |
| 4321 |
aequum
|
13년 전 | 2045 | |
| 4320 |
aequum
|
13년 전 | 1452 | |
| 4319 |
aequum
|
13년 전 | 1255 | |
| 4318 |
aequum
|
13년 전 | 1157 | |
| 4317 |
aequum
|
13년 전 | 934 | |
| 4316 | 13년 전 | 399 | ||
| 4315 |
Raincommunication
|
13년 전 | 1313 | |
| 4314 |
aequum
|
13년 전 | 4425 | |
| 4313 | 13년 전 | 1290 | ||
| 4312 |
|
13년 전 | 1054 | |
| 4311 | 13년 전 | 554 | ||
| 4310 |
후라보노보노
|
13년 전 | 782 | |
| 4309 | 13년 전 | 609 | ||
| 4308 |
levin
|
13년 전 | 494 | |
| 4307 | 13년 전 | 567 | ||
| 4306 | 13년 전 | 555 | ||
| 4305 | 13년 전 | 494 | ||
| 4304 | 13년 전 | 1366 | ||
| 4303 | 13년 전 | 686 | ||
| 4302 | 13년 전 | 536 | ||
| 4301 | 13년 전 | 513 | ||
| 4300 |
내꿈은대통령
|
13년 전 | 572 | |
| 4299 | 13년 전 | 871 | ||
| 4298 | 13년 전 | 776 | ||
| 4297 | 13년 전 | 1367 | ||
| 4296 | 13년 전 | 982 | ||
| 4295 |
원시인교주
|
13년 전 | 3443 | |
| 4294 | 13년 전 | 654 | ||
| 4293 | 13년 전 | 1211 | ||
| 4292 | 13년 전 | 948 | ||
| 4291 | 13년 전 | 2682 | ||
| 4290 |
Kanzi
|
13년 전 | 2295 | |
| 4289 |
393939
|
13년 전 | 500 | |
| 4288 | 13년 전 | 1558 | ||
| 4287 |
393939
|
13년 전 | 514 | |
| 4286 |
alenjoe
|
13년 전 | 2311 | |
| 4285 |
alenjoe
|
13년 전 | 1856 | |
| 4284 | 13년 전 | 468 | ||
| 4283 |
|
13년 전 | 5553 | |
| 4282 | 13년 전 | 818 | ||
| 4281 | 13년 전 | 1329 | ||
| 4280 | 13년 전 | 1146 | ||
| 4279 | 13년 전 | 1192 | ||
| 4278 | 13년 전 | 1067 | ||
| 4277 | 13년 전 | 1079 | ||
| 4276 |
|
13년 전 | 905 | |
| 4275 |
스누피사랑
|
13년 전 | 1262 | |
| 4274 |
스누피사랑
|
13년 전 | 1640 | |
| 4273 |
스누피사랑
|
13년 전 | 667 | |
| 4272 |
스누피사랑
|
13년 전 | 1039 | |
| 4271 |
한번잘해보자
|
13년 전 | 2077 | |
| 4270 | 13년 전 | 1921 | ||
| 4269 | 13년 전 | 878 | ||
| 4268 |
mydie
|
13년 전 | 1375 | |
| 4267 | 13년 전 | 3860 | ||
| 4266 | 13년 전 | 597 | ||
| 4265 |
|
13년 전 | 2586 | |
| 4264 |
onlymilk74
|
13년 전 | 1364 | |
| 4263 | 13년 전 | 1797 | ||
| 4262 | 13년 전 | 1014 | ||
| 4261 | 13년 전 | 778 | ||
| 4260 |
|
13년 전 | 783 | |
| 4259 | 13년 전 | 922 | ||
| 4258 |
|
13년 전 | 1002 | |
| 4257 |
|
13년 전 | 1881 | |
| 4256 | 13년 전 | 3131 | ||
| 4255 | 13년 전 | 2180 | ||
| 4254 | 13년 전 | 885 | ||
| 4253 | 13년 전 | 1502 | ||
| 4252 |
|
13년 전 | 1739 | |
| 4251 | 13년 전 | 545 | ||
| 4250 | 13년 전 | 1787 | ||
| 4249 |
|
13년 전 | 3024 | |
| 4248 | 13년 전 | 1707 | ||
| 4247 | 13년 전 | 2641 | ||
| 4246 | 13년 전 | 3949 | ||
| 4245 | 13년 전 | 3984 | ||
| 4244 |
아이피마스터
|
13년 전 | 2388 | |
| 4243 |
|
13년 전 | 832 | |
| 4242 | 13년 전 | 1119 | ||
| 4241 | 13년 전 | 3941 | ||
| 4240 |
Kanzi
|
13년 전 | 2265 | |
| 4239 |
Kanzi
|
13년 전 | 1415 | |
| 4238 | 13년 전 | 3778 | ||
| 4237 | 13년 전 | 2456 | ||
| 4236 | 13년 전 | 538 | ||
| 4235 | 13년 전 | 2444 | ||
| 4234 | 13년 전 | 597 | ||
| 4233 |
|
13년 전 | 829 | |
| 4232 |
|
13년 전 | 1665 | |
| 4231 |
|
13년 전 | 1288 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기