Changeset 18466 for branches/version-2_4-dev
- Timestamp:
- 2010/01/06 14:17:53 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_4-dev/data/class/SC_CheckError.php
r17727 r18466 296 296 } 297 297 298 $total_count = 0; 298 299 for($i = 1; $i <= 3; $i++) { 299 300 if(strlen($this->arrParam[$value[$i]]) > 0 && strlen($this->arrParam[$value[$i]]) > $value[4]) { … … 302 303 $this->arrErr[$value[$i]] .= "※ " . $value[0] . $i . "は数字で入力してください。<br />"; 303 304 } 305 $total_count += strlen($this->arrParam[$value[$i]]); 306 } 307 308 // 合計値チェック 309 if ($total_count > TEL_LEN) { 310 $this->arrErr[$value[3]] .= "※ " . $value[0] . "は" . TEL_LEN . "文字以内で入力してください。<br />"; 304 311 } 305 312 }
Note: See TracChangeset
for help on using the changeset viewer.