@@ -50,7 +50,7 @@ |
||
| 50 | 50 | */ |
| 51 | 51 | public static function create($config = []) |
| 52 | 52 | { |
| 53 | - if (!static::$_instance instanceof static ) { |
|
| 53 | + if (!static::$_instance instanceof static) { |
|
| 54 | 54 | static::$_instance = new static(); |
| 55 | 55 | static::$_instance->__formName = I::get($config, 'formName', 'file'); |
| 56 | 56 | static::$_instance->__sizeLimit = static::$_instance->__getSizeLimit(I::get($config, 'sizeLimit', 0)); |
@@ -57,7 +57,7 @@ |
||
| 57 | 57 | */ |
| 58 | 58 | public function getCurrentClassMethods($callback = null) |
| 59 | 59 | { |
| 60 | - $callback = null === $callback ? function () { |
|
| 60 | + $callback = null === $callback ? function() { |
|
| 61 | 61 | return true; |
| 62 | 62 | } : $callback; |
| 63 | 63 | $currentClass = $this->__reflector->getName(); |
@@ -57,7 +57,7 @@ |
||
| 57 | 57 | public static function stripTags($html, $allowTags = []) |
| 58 | 58 | { |
| 59 | 59 | $allowTags = array_map('strtolower', $allowTags); |
| 60 | - return preg_replace_callback('/<\/?([^>\s]+)[^>]*>/i', function ($matches) use (&$allowTags) { |
|
| 60 | + return preg_replace_callback('/<\/?([^>\s]+)[^>]*>/i', function($matches) use (&$allowTags) { |
|
| 61 | 61 | return in_array(strtolower($matches[1]), $allowTags) ? $matches[0] : ''; |
| 62 | 62 | }, $html); |
| 63 | 63 | } |
@@ -50,7 +50,7 @@ |
||
| 50 | 50 | { |
| 51 | 51 | $delta = 0.0; |
| 52 | 52 | if (isset(static::$_timers[$name])) { |
| 53 | - $delta = microtime(true)-static::$_timers[$name]; |
|
| 53 | + $delta = microtime(true) - static::$_timers[$name]; |
|
| 54 | 54 | unset(static::$_timers[$name]); |
| 55 | 55 | } |
| 56 | 56 | |
@@ -78,8 +78,8 @@ |
||
| 78 | 78 | } |
| 79 | 79 | return $mixed; |
| 80 | 80 | } elseif (is_string($mixed) || is_numeric($mixed)) { |
| 81 | - $pos = (int) $keyString; |
|
| 82 | - $length = null === $defaultValue ? 1 : (int) $defaultValue; |
|
| 81 | + $pos = (int)$keyString; |
|
| 82 | + $length = null === $defaultValue ? 1 : (int)$defaultValue; |
|
| 83 | 83 | return Strings::sub($mixed, $pos, $length); |
| 84 | 84 | } elseif (null === $mixed) { |
| 85 | 85 | return $defaultValue; |
@@ -23,8 +23,8 @@ discard block |
||
| 23 | 23 | public static function today() |
| 24 | 24 | { |
| 25 | 25 | return [ |
| 26 | - mktime(0, 0, 0, (int) date('m'), (int) date('d'), (int) date('Y')), |
|
| 27 | - mktime(23, 59, 59, (int) date('m'), (int) date('d'), (int) date('Y')), |
|
| 26 | + mktime(0, 0, 0, (int)date('m'), (int)date('d'), (int)date('Y')), |
|
| 27 | + mktime(23, 59, 59, (int)date('m'), (int)date('d'), (int)date('Y')), |
|
| 28 | 28 | ]; |
| 29 | 29 | } |
| 30 | 30 | |
@@ -35,10 +35,10 @@ discard block |
||
| 35 | 35 | */ |
| 36 | 36 | public static function yesterday() |
| 37 | 37 | { |
| 38 | - $yesterday = (int) date('d') - 1; |
|
| 38 | + $yesterday = (int)date('d') - 1; |
|
| 39 | 39 | return [ |
| 40 | - mktime(0, 0, 0, (int) date('m'), $yesterday, (int) date('Y')), |
|
| 41 | - mktime(23, 59, 59, (int) date('m'), $yesterday, (int) date('Y')), |
|
| 40 | + mktime(0, 0, 0, (int)date('m'), $yesterday, (int)date('Y')), |
|
| 41 | + mktime(23, 59, 59, (int)date('m'), $yesterday, (int)date('Y')), |
|
| 42 | 42 | ]; |
| 43 | 43 | } |
| 44 | 44 | |
@@ -49,10 +49,10 @@ discard block |
||
| 49 | 49 | */ |
| 50 | 50 | public static function tomorrow() |
| 51 | 51 | { |
| 52 | - $tomorrow = (int) date('d') + 1; |
|
| 52 | + $tomorrow = (int)date('d') + 1; |
|
| 53 | 53 | return [ |
| 54 | - mktime(0, 0, 0, (int) date('m'), $tomorrow, (int) date('Y')), |
|
| 55 | - mktime(23, 59, 59, (int) date('m'), $tomorrow, (int) date('Y')), |
|
| 54 | + mktime(0, 0, 0, (int)date('m'), $tomorrow, (int)date('Y')), |
|
| 55 | + mktime(23, 59, 59, (int)date('m'), $tomorrow, (int)date('Y')), |
|
| 56 | 56 | ]; |
| 57 | 57 | } |
| 58 | 58 | |
@@ -106,8 +106,8 @@ discard block |
||
| 106 | 106 | public static function month() |
| 107 | 107 | { |
| 108 | 108 | return [ |
| 109 | - mktime(0, 0, 0, (int) date('m'), 1, (int) date('Y')), |
|
| 110 | - mktime(23, 59, 59, (int) date('m'), (int) date('t'), (int) date('Y')), |
|
| 109 | + mktime(0, 0, 0, (int)date('m'), 1, (int)date('Y')), |
|
| 110 | + mktime(23, 59, 59, (int)date('m'), (int)date('t'), (int)date('Y')), |
|
| 111 | 111 | ]; |
| 112 | 112 | } |
| 113 | 113 | |
@@ -118,8 +118,8 @@ discard block |
||
| 118 | 118 | */ |
| 119 | 119 | public static function lastMonth() |
| 120 | 120 | { |
| 121 | - $begin = mktime(0, 0, 0, (int) date('m') - 1, 1, (int) date('Y')); |
|
| 122 | - $end = mktime(23, 59, 59, (int) date('m') - 1, (int) date('t', $begin), (int) date('Y')); |
|
| 121 | + $begin = mktime(0, 0, 0, (int)date('m') - 1, 1, (int)date('Y')); |
|
| 122 | + $end = mktime(23, 59, 59, (int)date('m') - 1, (int)date('t', $begin), (int)date('Y')); |
|
| 123 | 123 | |
| 124 | 124 | return [$begin, $end]; |
| 125 | 125 | } |
@@ -131,8 +131,8 @@ discard block |
||
| 131 | 131 | */ |
| 132 | 132 | public static function nextMonth() |
| 133 | 133 | { |
| 134 | - $begin = mktime(0, 0, 0, (int) date('m') + 1, 1, (int) date('Y')); |
|
| 135 | - $end = mktime(23, 59, 59, (int) date('m') + 1, (int) date('t', $begin), (int) date('Y')); |
|
| 134 | + $begin = mktime(0, 0, 0, (int)date('m') + 1, 1, (int)date('Y')); |
|
| 135 | + $end = mktime(23, 59, 59, (int)date('m') + 1, (int)date('t', $begin), (int)date('Y')); |
|
| 136 | 136 | |
| 137 | 137 | return [$begin, $end]; |
| 138 | 138 | } |
@@ -145,8 +145,8 @@ discard block |
||
| 145 | 145 | public static function year() |
| 146 | 146 | { |
| 147 | 147 | return [ |
| 148 | - mktime(0, 0, 0, 1, 1, (int) date('Y')), |
|
| 149 | - mktime(23, 59, 59, 12, 31, (int) date('Y')), |
|
| 148 | + mktime(0, 0, 0, 1, 1, (int)date('Y')), |
|
| 149 | + mktime(23, 59, 59, 12, 31, (int)date('Y')), |
|
| 150 | 150 | ]; |
| 151 | 151 | } |
| 152 | 152 | |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | */ |
| 158 | 158 | public static function lastYear() |
| 159 | 159 | { |
| 160 | - $year = (int) date('Y') - 1; |
|
| 160 | + $year = (int)date('Y') - 1; |
|
| 161 | 161 | return [ |
| 162 | 162 | mktime(0, 0, 0, 1, 1, $year), |
| 163 | 163 | mktime(23, 59, 59, 12, 31, $year), |
@@ -171,7 +171,7 @@ discard block |
||
| 171 | 171 | */ |
| 172 | 172 | public static function nextYear() |
| 173 | 173 | { |
| 174 | - $year = (int) date('Y') + 1; |
|
| 174 | + $year = (int)date('Y') + 1; |
|
| 175 | 175 | return [ |
| 176 | 176 | mktime(0, 0, 0, 1, 1, $year), |
| 177 | 177 | mktime(23, 59, 59, 12, 31, $year), |
@@ -486,6 +486,6 @@ |
||
| 486 | 486 | if (null === $this->_pemPublic) { |
| 487 | 487 | throw new Exception("请使用 setPair 提供公钥"); |
| 488 | 488 | } |
| 489 | - return (boolean) openssl_verify($data, $signature, $this->_pemPublic, $signType); |
|
| 489 | + return (boolean)openssl_verify($data, $signature, $this->_pemPublic, $signType); |
|
| 490 | 490 | } |
| 491 | 491 | } |
@@ -201,7 +201,7 @@ |
||
| 201 | 201 | @ftp_chmod($this->_conn, $mode, $subFile); |
| 202 | 202 | } |
| 203 | 203 | } |
| 204 | - return (boolean) @ftp_chmod($this->_conn, $mode, $file); |
|
| 204 | + return (boolean)@ftp_chmod($this->_conn, $mode, $file); |
|
| 205 | 205 | } |
| 206 | 206 | |
| 207 | 207 | /** |
@@ -388,7 +388,7 @@ discard block |
||
| 388 | 388 | if ($number % 2 == 1) { |
| 389 | 389 | $number += 1; |
| 390 | 390 | } |
| 391 | - return (int) $number; |
|
| 391 | + return (int)$number; |
|
| 392 | 392 | } |
| 393 | 393 | |
| 394 | 394 | /** |
@@ -412,7 +412,7 @@ discard block |
||
| 412 | 412 | */ |
| 413 | 413 | public static function fact($number) |
| 414 | 414 | { |
| 415 | - $number = (int) floor($number); |
|
| 415 | + $number = (int)floor($number); |
|
| 416 | 416 | if ($number == 0) { |
| 417 | 417 | return 1; |
| 418 | 418 | } |
@@ -638,7 +638,7 @@ discard block |
||
| 638 | 638 | $arr = []; |
| 639 | 639 | for ($r = 0; $r < $row1; $r++) { |
| 640 | 640 | for ($c = 0; $c < $col2; $c++) { |
| 641 | - $arr[$r][$c] = array_sum(array_map(function ($a1, $a2) { |
|
| 641 | + $arr[$r][$c] = array_sum(array_map(function($a1, $a2) { |
|
| 642 | 642 | return $a1 * $a2; |
| 643 | 643 | }, $array1[$r], Arrays::column($array2, $c))); |
| 644 | 644 | } |
@@ -687,7 +687,7 @@ discard block |
||
| 687 | 687 | public static function multinomial($number1) |
| 688 | 688 | { |
| 689 | 689 | $numbers = is_array($number1) ? $number1 : func_get_args(); |
| 690 | - return self::fact(array_sum($numbers)) / array_product(array_map(function ($num) { |
|
| 690 | + return self::fact(array_sum($numbers)) / array_product(array_map(function($num) { |
|
| 691 | 691 | return self::fact($num); |
| 692 | 692 | }, $numbers)); |
| 693 | 693 | } |
@@ -730,7 +730,7 @@ discard block |
||
| 730 | 730 | if ($number % 2 == 0) { |
| 731 | 731 | $number += 1; |
| 732 | 732 | } |
| 733 | - return (int) $number; |
|
| 733 | + return (int)$number; |
|
| 734 | 734 | } |
| 735 | 735 | |
| 736 | 736 | /** |
@@ -779,7 +779,7 @@ discard block |
||
| 779 | 779 | */ |
| 780 | 780 | public static function quotient($numberator, $denominator) |
| 781 | 781 | { |
| 782 | - return (int) ($numberator / $denominator); |
|
| 782 | + return (int)($numberator / $denominator); |
|
| 783 | 783 | } |
| 784 | 784 | |
| 785 | 785 | /** |
@@ -801,7 +801,7 @@ discard block |
||
| 801 | 801 | */ |
| 802 | 802 | public static function rand() |
| 803 | 803 | { |
| 804 | - return mt_rand(0, (int) self::power(10, 10)) / self::power(10, 10); |
|
| 804 | + return mt_rand(0, (int)self::power(10, 10)) / self::power(10, 10); |
|
| 805 | 805 | } |
| 806 | 806 | |
| 807 | 807 | /** |
@@ -817,11 +817,11 @@ discard block |
||
| 817 | 817 | */ |
| 818 | 818 | public static function randarray($row = 1, $col = 1, $min = 0, $max = null, $isInt = false) |
| 819 | 819 | { |
| 820 | - null === $max && $max = (int) pow(10, 10); |
|
| 820 | + null === $max && $max = (int)pow(10, 10); |
|
| 821 | 821 | $array = []; |
| 822 | 822 | for ($i = 0; $i < $row; $i++) { |
| 823 | 823 | for ($j = 0; $j < $col; $j++) { |
| 824 | - $array[$i][$j] = mt_rand($min, $max) + ($isInt ? 0 : mt_rand(0, (int) pow(10, 10)) / pow(10, 10)); |
|
| 824 | + $array[$i][$j] = mt_rand($min, $max) + ($isInt ? 0 : mt_rand(0, (int)pow(10, 10)) / pow(10, 10)); |
|
| 825 | 825 | } |
| 826 | 826 | } |
| 827 | 827 | return $array; |
@@ -987,7 +987,7 @@ discard block |
||
| 987 | 987 | $k = 1; |
| 988 | 988 | for ($i = 0; $i < $row; $i++) { |
| 989 | 989 | for ($j = 0; $j < $col; $j++) { |
| 990 | - $array[$i][$j] = $start + ($k++ - 1) * $step; |
|
| 990 | + $array[$i][$j] = $start + ($k++ -1) * $step; |
|
| 991 | 991 | } |
| 992 | 992 | } |
| 993 | 993 | return $array; |
@@ -1124,7 +1124,7 @@ discard block |
||
| 1124 | 1124 | array_push($arr[$i], $array[$i]); |
| 1125 | 1125 | } |
| 1126 | 1126 | } |
| 1127 | - return array_sum(array_map(function ($rows) { |
|
| 1127 | + return array_sum(array_map(function($rows) { |
|
| 1128 | 1128 | return array_product($rows); |
| 1129 | 1129 | }, $arr)); |
| 1130 | 1130 | } |
@@ -1139,7 +1139,7 @@ discard block |
||
| 1139 | 1139 | public static function sumsq($number1) |
| 1140 | 1140 | { |
| 1141 | 1141 | $numbers = is_array($number1) ? $number1 : func_get_args(); |
| 1142 | - return array_sum(array_map(function ($num) { |
|
| 1142 | + return array_sum(array_map(function($num) { |
|
| 1143 | 1143 | return $num * $num; |
| 1144 | 1144 | }, $numbers)); |
| 1145 | 1145 | } |