네이버 지도 API XML Parsing때 PHP file_get_contents 대체
이전에 작업했던 것인데 네이버 지도API를 이용해 주소의 좌표 값을 받아오는 코드가 있었다.
이번에도 사용하려고 해보니 file_get_contents() 함수를 사용할 수가 없어 어찌해야할지 머리를 쥐어짰는데
다행히 구글신의 도움으로 해결을 할 수가 있었다. curl 을 이용하는 방법으로 아래 사이트를 참고하면 된다.
참고 사이트 : http://stackoverflow.com/questions/5979314/how-to-use-fsockopen-to-load-a-url-from-an-xml-sitemap
위 내용을 이용해서 아래처럼 코드를 작성했더니 좌표 값을 정상적으로 받아올 수가 있었다.
// 해당주소의 네이버 지도 좌표
$source =”http://openapi.map.naver.com/api/geocode.php?key=” . $naver_api_key . “&encoding=utf-8&coord=tm128&query=”;$source .= RFCUrlEncode($address);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $source);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$xml = curl_exec ($ch);
curl_close ($ch);$parser = new XMLParser($xml);
$parser->Parse();
$xCoord = (int)$parser->document->item[0]->point[0]->x[0]->tagData;
$yCoord = (int)$parser->document->item[0]->point[0]->y[0]->tagData;
그리고 위 코드에서 사용된 RFCUrlEncode 함수는 아래와 같다.
// RFC 3986 urlencode
function RFCUrlEncode($string) {
$entities = array(‘%21’, ‘%2A’, ‘%27’, ‘%28’, ‘%29’, ‘%3B’, ‘%3A’, ‘%40’, ‘%26’, ‘%3D’, ‘%2B’, ‘%24’, ‘%2C’, ‘%2F’, ‘%3F’, ‘%25’, ‘%23’, ‘%5B’, ‘%5D’);
$replacements = array(‘!’, ‘*’, “‘”, “(“, “)”, “;”, “:”, “@”, “&”, “=”, “+”, “$”, “,”, “/”, “?”, “%”, “#”, “[“, “]”);
return str_replace($entities, $replacements, urlencode($string));
}
XML Parser 는 http://www.criticaldevelopment.net/xml/ 를 접속해보면 된다.