Changeset 23415 for branches/version-2_13-dev/data/class/util
- Timestamp:
- 2014/05/13 13:03:33 (12 years ago)
- Location:
- branches/version-2_13-dev/data/class/util
- Files:
-
- 2 edited
-
GC_Utils.php (modified) (2 diffs)
-
SC_Utils.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_13-dev/data/class/util/GC_Utils.php
r23124 r23415 180 180 * @param bool $verbose 冗長な出力を行うか 181 181 */ 182 public function gfPrintLog($msg, $path = '', $verbose = USE_VERBOSE_LOG)182 public static function gfPrintLog($msg, $path = '', $verbose = USE_VERBOSE_LOG) 183 183 { 184 184 // 日付の取得 … … 363 363 public function getUrl() 364 364 { 365 $url = '';366 367 365 if (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') { 368 366 $url = 'https://'; -
branches/version-2_13-dev/data/class/util/SC_Utils.php
r23340 r23415 1602 1602 * @return boolean $val が空白と判断された場合 true 1603 1603 */ 1604 public function isBlank($val, $greedy = true)1604 public static function isBlank($val, $greedy = true) 1605 1605 { 1606 1606 if (is_array($val)) { … … 1667 1667 public function sfGetHashString($str, $salt) 1668 1668 { 1669 $res = '';1670 1669 if ($salt == '') { 1671 1670 $salt = AUTH_MAGIC; … … 1868 1867 /** 1869 1868 * 指定されたパスの配下を再帰的にコピーします. 1870 * @param string $imageDirコピー元ディレクトリのパス1871 * @param string $destDirコピー先ディレクトリのパス1869 * @param string $source_path コピー元ディレクトリのパス 1870 * @param string $dest_path コピー先ディレクトリのパス 1872 1871 * @return void 1873 1872 */ … … 1898 1897 * @return string 1899 1898 */ 1900 public function repeatStrWithSeparator($input, $multiplier, $separator = ',')1899 public static function repeatStrWithSeparator($input, $multiplier, $separator = ',') 1901 1900 { 1902 1901 return implode($separator, array_fill(0, $multiplier, $input));
Note: See TracChangeset
for help on using the changeset viewer.
