아이코드 전송 데이터와 전송 결과를 초기화 하는 변수 코드 수정

This commit is contained in:
thisgun
2020-11-06 16:10:47 +09:00
parent 4f2e891e62
commit 0832f72914
2 changed files with 4 additions and 4 deletions

View File

@ -56,8 +56,8 @@ class LMS {
} }
function Init() { function Init() {
$this->Data = ""; // 발송하기 위한 패킷내용이 배열로 들어간다. $this->Data = array(); // 발송하기 위한 패킷내용이 배열로 들어간다.
$this->Result = ""; // 발송결과값이 배열로 들어간다. $this->Result = array(); // 발송결과값이 배열로 들어간다.
} }
function Add($strDest, $strCallBack, $strCaller, $strSubject, $strURL, $strData, $strDate="", $nCount) { function Add($strDest, $strCallBack, $strCaller, $strSubject, $strURL, $strData, $strDate="", $nCount) {

View File

@ -67,8 +67,8 @@ class SMS {
} }
function Init() { function Init() {
$this->Data = ""; $this->Data = array();
$this->Result = ""; $this->Result = array();
} }
function Add($dest, $callBack, $Caller, $msg, $rsvTime="") { function Add($dest, $callBack, $Caller, $msg, $rsvTime="") {