Ignore:
Timestamp:
2012/03/26 21:44:52 (12 years ago)
Author:
Seasoft
Message:

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

File:
1 edited

Legend:

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

    r21674 r21684  
    998998    function sfArrCombine($arrKeys, $arrValues) { 
    999999 
    1000         if(count($arrKeys) <= 0 and count($arrValues) <= 0) return array(); 
     1000        if (count($arrKeys) <= 0 and count($arrValues) <= 0) return array(); 
    10011001 
    10021002        $keys = array_values($arrKeys); 
     
    10081008            $combine_ary[$keys[$i]] = $vals[$i]; 
    10091009        } 
    1010         if(is_array($combine_ary)) return $combine_ary; 
     1010        if (is_array($combine_ary)) return $combine_ary; 
    10111011 
    10121012        return false; 
     
    13861386        } 
    13871387        // ディレクトリ(ファイル)が存在しない場合は0byteを返す 
    1388         if($bytes == '') $bytes = 0; 
     1388        if ($bytes == '') { 
     1389            $bytes = 0; 
     1390        } 
    13891391 
    13901392        return $bytes; 
Note: See TracChangeset for help on using the changeset viewer.