Ignore:
Timestamp:
2012/03/20 00:37:32 (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

    r21646 r21659  
    258258            $date = ''; 
    259259        } 
    260         return     $date; 
     260        return $date; 
    261261    } 
    262262 
     
    869869            exit; 
    870870        } 
    871         return     $outpath; 
     871        return $outpath; 
    872872    } 
    873873 
     
    992992    // PHPのmb_convert_encoding関数をSmartyでも使えるようにする 
    993993    function sfMbConvertEncoding($str, $encode = 'CHAR_CODE') { 
    994         return  mb_convert_encoding($str, $encode); 
     994        return mb_convert_encoding($str, $encode); 
    995995    } 
    996996 
     
    19291929    function isAbsoluteRealPath($realpath) { 
    19301930        if (strpos(PHP_OS, 'WIN') === false) { 
    1931             return (substr($realpath, 0, 1) == '/'); 
     1931            return substr($realpath, 0, 1) == '/'; 
    19321932        } else { 
    19331933            return preg_match('/^[a-zA-Z]:(\\\|\/)/', $realpath) ? true : false; 
Note: See TracChangeset for help on using the changeset viewer.