_Setting, _String, _Time 클래스 재 명명

- autoload로 변환
This commit is contained in:
2018-03-24 21:28:12 +09:00
parent a3f83d1e95
commit 002f9ba6cf
32 changed files with 109 additions and 360 deletions
+3 -3
View File
@@ -7,7 +7,7 @@ include "func.php";
$name = $_POST['name'];
$name = _String::NoSpecialCharacter($name);
$name = StringUtil::NoSpecialCharacter($name);
$pic = util::array_get($_POST['pic'],'');
$character = $_POST['character'];
@@ -78,7 +78,7 @@ if($id_num) {
history.go(-1)
</script>");
exit;
} elseif(_String::GetStrLen($name) < 1) {
} elseif(StringUtil::GetStrLen($name) < 1) {
echo("<script>
window.alert('이름이 짧습니다. 다시 가입해주세요!')
history.go(-1)
@@ -90,7 +90,7 @@ if($id_num) {
history.go(-1)
</script>");
exit;
} elseif(_String::GetStrLen($name) > 6) {
} elseif(StringUtil::GetStrLen($name) > 6) {
echo("<script>
window.alert('이름이 유효하지 않습니다. 다시 가입해주세요!')
history.go(-1)