Ignore:
Timestamp:
2012/02/11 05:48:00 (12 years ago)
Author:
Seasoft
Message:

#1613 (ソース整形・ソースコメントの改善)

  • Zend Framework PHP 標準コーディング規約への準拠を高めた
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/SC_UploadFile.php

    r21480 r21481  
    266266        foreach ($this->keyname as $val) { 
    267267            if (isset($this->temp_file[$cnt])) { 
    268                 $arrRet["temp_" . $val] = $this->temp_file[$cnt]; 
     268                $arrRet['temp_' . $val] = $this->temp_file[$cnt]; 
    269269            } 
    270270            if (isset($this->save_file[$cnt]) && $this->save_file[$cnt] != "") { 
    271                 $arrRet["save_" . $val] = $this->save_file[$cnt]; 
     271                $arrRet['save_' . $val] = $this->save_file[$cnt]; 
    272272            } 
    273273            $cnt++; 
     
    280280        $cnt = 0; 
    281281        foreach ($this->keyname as $val) { 
    282             $key = "temp_" . $val; 
     282            $key = 'temp_' . $val; 
    283283            if (isset($arrPOST[$key]) && !empty($arrPOST[$key])) { 
    284284                $this->temp_file[$cnt] = $arrPOST[$key]; 
    285285            } 
    286             $key = "save_" . $val; 
     286            $key = 'save_' . $val; 
    287287            if (isset($arrPOST[$key]) && !empty($arrPOST[$key])) { 
    288288                $this->save_file[$cnt] = $arrPOST[$key]; 
     
    295295        $cnt = 0; 
    296296        foreach ($this->keyname as $val) { 
    297             $key = "temp_" . $val; 
     297            $key = 'temp_' . $val; 
    298298            if (isset($arrPOST[$key])) { 
    299299                $this->temp_file[$cnt] = $arrPOST[$key]; 
    300300            } 
    301             $key = "save_" . $val; 
     301            $key = 'save_' . $val; 
    302302            if (isset($arrPOST[$key]) && !empty($arrPOST[$key])) { 
    303303                $this->save_file[$cnt] = $arrPOST[$key]; 
Note: See TracChangeset for help on using the changeset viewer.