Ignore:
Timestamp:
2012/02/06 11:27:03 (12 years ago)
Author:
Seasoft
Message:

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

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

Legend:

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

    r21441 r21442  
    7171        for ($i=0; $i<count($array); $i++) { 
    7272 
    73             for ($j=0; $j<count($array[$i]); $j++ ) { 
     73            for ($j=0; $j<count($array[$i]); $j++) { 
    7474                if ( $j > 0 ) $return .= ","; 
    7575                $return .= "\""; 
    76                 if ($arrayIndex ) { 
     76                if ($arrayIndex) { 
    7777                    $return .= mb_ereg_replace("<","<",mb_ereg_replace( "\"","\"\"",$array[$i][$arrayIndex[$j]] )) ."\""; 
    7878                } else { 
     
    131131        $traces = debug_backtrace(false); 
    132132        $bklv = 1; 
    133         if ($forLogInfo === true ) { 
     133        if ($forLogInfo === true) { 
    134134            $bklv = 3; 
    135135            if( ($traces[3]['class'] === 'LC_Page' 
     
    297297 
    298298        $password = ""; 
    299         for ($i = 0; $i<$pwLength; $i++ ) { 
     299        for ($i = 0; $i<$pwLength; $i++) { 
    300300            $password .= $pw[array_rand($pw, 1)]; 
    301301        } 
Note: See TracChangeset for help on using the changeset viewer.