Ignore:
Timestamp:
2011/03/07 15:23:39 (15 years ago)
Author:
Seasoft
Message:

#627(ソース整形・ソースコメントの改善)
#628(未使用処理・定義などの削除)

File:
1 edited

Legend:

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

    r20484 r20538  
    4141    function gfDownloadCsv($header, $contents){ 
    4242 
    43         $fiest_name = date("YmdHis") .".csv"; 
     43        $fiest_name = date('YmdHis') .".csv"; 
    4444 
    4545        /* HTTPヘッダの出力 */ 
     
    9494    function gfGetAge($dbdate) 
    9595    { 
    96         $ty = date("Y"); 
    97         $tm = date("m"); 
    98         $td = date("d"); 
     96        $ty = date('Y'); 
     97        $tm = date('m'); 
     98        $td = date('d'); 
    9999        list($by, $bm, $bd) = preg_split("/[-/ ]/", $dbdate); 
    100100        $age = $ty - $by; 
Note: See TracChangeset for help on using the changeset viewer.