묻고답하기
1.5 업데이트 이후 오류납니다..$end?
2012.08.09 21:13
Parse error: syntax error, unexpected $end in /web/home/leerot/html/XE/classes/xml/xmlquery/queryargument/DefaultValue.class.php on line136
올려져있는 파일 그대로 받아서 업로드했는데 이렇게 오류나네요;; 저 파일 들어가서
글 몇개 찾아봤는데 } 이걸 닫으라는 말이 많았는데..전혀..모르겠구요 ^^;;ㅠㅠ
아시는 분 잘 설명해주시면 감사하겠습니다..ㅠㅠ
switch($func_name) {
case 'ipaddress' :
$val = '$_SERVER[\'REMOTE_ADDR\']';
$this->_is_string_from_function = true;
break;
case 'unixtime' :
$val = 'time()';
break;
case 'curdate' :
$val = 'date("YmdHis")';
$this->_is_string_from_function = true;
break;
case 'sequence' :
$this->is_sequence = true;
$val = '$sequence';
break;
case 'plus' :
$args = abs($args);
$this->is_operation = true;
$this->operation = '+';
$val = sprintf('%d', $args);
break;
case 'minus' :
$args = abs($args);
$this->is_operation = true;
$this->operation = '-';
$val = sprintf('%d', $args);
break;
case 'multiply' :
$args = intval($args);
$this->is_operation = true;
$this->operation = '*';
$val = sprintf('%d', $args);
break;
default :
$val = '\'' . $this->value . '\''; <-136번째 줄입니다;
//$val = $this->value;
}
return $val;
}
function toString(){
return $this->value;
}
}
Break;
라고 한번 추가해보세요..