도로명 주소 표기 방법에 따른 수정

This commit is contained in:
chicpro
2014-01-03 14:07:53 +09:00
parent eb434eaf3d
commit f9daab0dbe
9 changed files with 45 additions and 17 deletions

View File

@ -2487,4 +2487,18 @@ function module_exec_check($exe, $type)
return $error;
}
// 도로명 상세 주소처리
function get_address2($addr2, $addr3)
{
if($addr3) {
if($addr2) {
$addr2 .= ' '.$addr3;
} else {
$addr2 = $addr3;
}
}
return $addr2;
}
?>