테스트

This commit is contained in:
2026-01-16 14:13:41 +09:00
parent b971005525
commit 6be418b06c
5 changed files with 228 additions and 40 deletions

View File

@@ -283,3 +283,27 @@ function checkPasswordTypes(string $password, int $minTypes = 2): bool
return $types >= $minTypes;
}
/**
* 소유자 구분코드 변환
*/
function getOwnerTypeCodeNo($code)
{
switch ($code) {
case "INDIV":
return "0";
break;
case "CORP":
return "1";
break;
case "FRGNR":
return "2";
break;
case "DELEG":
return "3";
break;
default:
return null;
break;
}
}