Ignore:
Timestamp:
2014/05/13 13:03:33 (12 years ago)
Author:
pineray
Message:

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

Location:
branches/version-2_13-dev/data/class/util
Files:
2 edited

Legend:

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

    r23124 r23415  
    180180     * @param bool   $verbose 冗長な出力を行うか 
    181181     */ 
    182     public function gfPrintLog($msg, $path = '', $verbose = USE_VERBOSE_LOG) 
     182    public static function gfPrintLog($msg, $path = '', $verbose = USE_VERBOSE_LOG) 
    183183    { 
    184184        // 日付の取得 
     
    363363    public function getUrl() 
    364364    { 
    365         $url = ''; 
    366  
    367365        if (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') { 
    368366            $url = 'https://'; 
  • branches/version-2_13-dev/data/class/util/SC_Utils.php

    r23340 r23415  
    16021602     * @return boolean $val が空白と判断された場合 true 
    16031603     */ 
    1604     public function isBlank($val, $greedy = true) 
     1604    public static function isBlank($val, $greedy = true) 
    16051605    { 
    16061606        if (is_array($val)) { 
     
    16671667    public function sfGetHashString($str, $salt) 
    16681668    { 
    1669         $res = ''; 
    16701669        if ($salt == '') { 
    16711670            $salt = AUTH_MAGIC; 
     
    18681867    /** 
    18691868     * 指定されたパスの配下を再帰的にコピーします. 
    1870      * @param  string $imageDir コピー元ディレクトリのパス 
    1871      * @param  string $destDir コピー先ディレクトリのパス 
     1869     * @param string $source_path コピー元ディレクトリのパス 
     1870     * @param string $dest_path コピー先ディレクトリのパス 
    18721871     * @return void 
    18731872     */ 
     
    18981897     * @return string 
    18991898     */ 
    1900     public function repeatStrWithSeparator($input, $multiplier, $separator = ',') 
     1899    public static function repeatStrWithSeparator($input, $multiplier, $separator = ',') 
    19011900    { 
    19021901        return implode($separator, array_fill(0, $multiplier, $input)); 
Note: See TracChangeset for help on using the changeset viewer.