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

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.