스페이스 바 등 몇몇 문자열 가능하게 처리 & 문자열 보정

This commit is contained in:
2018-06-24 04:44:34 +09:00
parent c4f5962c7e
commit b534da34ad
4 changed files with 37 additions and 23 deletions
+18 -17
View File
@@ -44,12 +44,12 @@ $comStr = EncodeCommand($fourth, $third, $double, $command);
// 건국
if($command == 46) {
$name = addslashes(SQ2DQ($name));
$name = str_replace("|", "", $name);
$name = str_replace(" ", "", $name);
$name = str_replace(" ", "", $name);
if($name == "") { $name = "무명"; }
$name = htmlspecialchars($name);
$name = StringUtil::removeSpecialCharacter($name);
$name = StringUtil::subStringForWidth($name, 0, 18);
$name = WebUtil::htmlPurify($name);
$name = StringUtil::textStrip($name);
if($name == "") { $name = "무명"; }
$db->update('general', [
'makenation'=>$name
@@ -72,15 +72,16 @@ if($command == 53) {
$me = MYDB_fetch_array($result);
if($me['level'] >= 5) {
$nationname = addslashes(SQ2DQ($nationname));
$nationname = str_replace("|", "", $nationname);
$nationname = str_replace(" ", "", $nationname);
$nationname = str_replace(" ", "", $nationname);
if($nationname == "") { $nationname = "무명"; }
$nationname = htmlspecialchars($nationname);
$nationname = StringUtil::removeSpecialCharacter($nationname);
$nationname = StringUtil::subStringForWidth($nationname, 0, 18);
$query = "update general set makenation='{$nationname}' where level>=5 and nation='{$me['nation']}'";
MYDB_query($query, $connect) or Error(__LINE__.MYDB_error($connect),"");
$nationname = WebUtil::htmlPurify($nationname);
$nationname = StringUtil::textStrip($nationname);
if($nationname == "") { $nationname = "무명"; }
$db->update('general', [
'makenation'=>$nationname
], 'level>=5 and nation=%i', $me['nation']);
$count = count($turn);
$str = "type=type";
@@ -101,11 +102,11 @@ if($command == 61) {
$me = MYDB_fetch_array($result);
if($me['level'] >= 5) {
$note = addslashes(SQ2DQ($note));
$note = str_replace("|", "", $note);
$note = str_replace(" ", "", $note);
$note = str_replace(" ", "", $note);
$note = htmlspecialchars($note);
$note = StringUtil::removeSpecialCharacter($note);
$note = StringUtil::subStringForWidth($note, 0, 90);
$note = WebUtil::htmlPurify($note);
$note = StringUtil::textStrip($note);
$query = "update diplomacy set reserved='{$note}' where me='{$me['nation']}' and you='$double'";
MYDB_query($query, $connect) or Error(__LINE__.MYDB_error($connect),"");