Ignore:
Timestamp:
2012/02/15 20:52:51 (15 years ago)
Author:
Seasoft
Message:

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

  • 主に長い行の改善
File:
1 edited

Legend:

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

    r21515 r21516  
    231231        $fp = fopen($path, 'a+'); 
    232232        if ($fp) { 
    233             fwrite($fp, $today.' ['.$_SERVER['PHP_SELF'].'] '.$mess.' from '. $_SERVER['REMOTE_ADDR']. "\n"); 
     233            $string = "$today [{$_SERVER['PHP_SELF']}] $mess from {$_SERVER['REMOTE_ADDR']}\n"; 
     234            fwrite($fp, $string); 
    234235            fclose($fp); 
    235236        } 
Note: See TracChangeset for help on using the changeset viewer.