@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | if (array_key_exists('server-port', $this->server)) { |
114 | 114 | return $this->server['server-port']; |
115 | 115 | } |
116 | - return $this->getSecure()?443:80; |
|
116 | + return $this->getSecure() ? 443 : 80; |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | /** |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | */ |
158 | 158 | public static function createUriBase(RequestWrapper $request) |
159 | 159 | { |
160 | - $scheme = $request->isSecure()?'https':'http'; |
|
160 | + $scheme = $request->isSecure() ? 'https' : 'http'; |
|
161 | 161 | $port = $request->getPort(); |
162 | 162 | if ($port == 80 && $scheme == 'http') { |
163 | 163 | $port = ''; |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | } else { |
167 | 167 | $port = ':'.$port; |
168 | 168 | } |
169 | - $base = $scheme.'://'. $request->getHost().$port; |
|
169 | + $base = $scheme.'://'.$request->getHost().$port; |
|
170 | 170 | return $base; |
171 | 171 | } |
172 | 172 |
@@ -88,10 +88,10 @@ discard block |
||
88 | 88 | */ |
89 | 89 | protected function sendMultipleFileByRange(Response $response, array $ranges) |
90 | 90 | { |
91 | - $separates = 'multiple_range_' . base64_encode(md5(uniqid(), true)); |
|
92 | - $response->setHeader('content-type', 'multipart/byteranges; boundary=' . $separates); |
|
91 | + $separates = 'multiple_range_'.base64_encode(md5(uniqid(), true)); |
|
92 | + $response->setHeader('content-type', 'multipart/byteranges; boundary='.$separates); |
|
93 | 93 | foreach ($ranges as $range) { |
94 | - $response->write('--' . $separates . "\r\n"); |
|
94 | + $response->write('--'.$separates."\r\n"); |
|
95 | 95 | $this->sendMultipleRangePart($response, $range); |
96 | 96 | $this->sendFileByRange($response, $range); |
97 | 97 | $response->write("\r\n"); |
@@ -138,8 +138,8 @@ discard block |
||
138 | 138 | */ |
139 | 139 | protected function sendMultipleRangePart(Response $response, array $range) |
140 | 140 | { |
141 | - $response->write('Content-Type: ' . $this->mime . "\r\n"); |
|
142 | - $response->write('Content-Range: ' . $this->getRangeHeader($range) . "\r\n\r\n"); |
|
141 | + $response->write('Content-Type: '.$this->mime."\r\n"); |
|
142 | + $response->write('Content-Range: '.$this->getRangeHeader($range)."\r\n\r\n"); |
|
143 | 143 | } |
144 | 144 | |
145 | 145 | /** |
@@ -304,15 +304,15 @@ |
||
304 | 304 | if ($this->expire !== 0) { |
305 | 305 | $time = $this->fullTime ? $this->expire : time() + $this->expire; |
306 | 306 | $dateTime = DateTime::createFromFormat('U', $time, new DateTimeZone('GMT')); |
307 | - $cookie .= '; Expires=' . str_replace('+0000', '', $dateTime->format('D, d M Y H:i:s T')); |
|
307 | + $cookie .= '; Expires='.str_replace('+0000', '', $dateTime->format('D, d M Y H:i:s T')); |
|
308 | 308 | } |
309 | 309 | |
310 | 310 | if ($this->domain !== null) { |
311 | - $cookie .= '; Domain=' . $this->domain; |
|
311 | + $cookie .= '; Domain='.$this->domain; |
|
312 | 312 | } |
313 | 313 | |
314 | 314 | if ($this->path) { |
315 | - $cookie .= '; Path=' . $this->path; |
|
315 | + $cookie .= '; Path='.$this->path; |
|
316 | 316 | } |
317 | 317 | |
318 | 318 | if ($this->secure) { |
@@ -164,7 +164,7 @@ |
||
164 | 164 | private function sendWarningIfy(string $name) |
165 | 165 | { |
166 | 166 | if ($this->isSend()) { |
167 | - trigger_error($name .': response has been send', E_USER_WARNING); |
|
167 | + trigger_error($name.': response has been send', E_USER_WARNING); |
|
168 | 168 | } |
169 | 169 | } |
170 | 170 | } |
@@ -47,7 +47,7 @@ |
||
47 | 47 | public function status(int $statusCode) |
48 | 48 | { |
49 | 49 | $this->response->status($statusCode); |
50 | - $this->status = $statusCode; |
|
50 | + $this->status = $statusCode; |
|
51 | 51 | return $this; |
52 | 52 | } |
53 | 53 |
@@ -7,12 +7,12 @@ |
||
7 | 7 | use suda\application\builder\ApplicationBuilder; |
8 | 8 | use suda\framework\http\HTTPResponse as Response; |
9 | 9 | |
10 | -require_once __DIR__ .'/loader.php'; |
|
10 | +require_once __DIR__.'/loader.php'; |
|
11 | 11 | |
12 | 12 | // 初始化系统加载器 |
13 | 13 | $loader = new Loader; |
14 | 14 | $loader->register(); |
15 | -$loader->addIncludePath(SUDA_SYSTEM .'/src', 'suda'); |
|
15 | +$loader->addIncludePath(SUDA_SYSTEM.'/src', 'suda'); |
|
16 | 16 | // 初始化数据目录 |
17 | 17 | defined('SUDA_DATA') or define('SUDA_DATA', Path::toAbsolutePath('~/data')); |
18 | 18 | defined('SUDA_APP_MANIFEST') or define('SUDA_APP_MANIFEST', SUDA_APP.'/manifest'); |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | { |
38 | 38 | $absolute = PathTrait::toAbsolutePath($target); |
39 | 39 | $root = PathTrait::toAbsolutePath($root); |
40 | - return strpos($absolute, $root . DIRECTORY_SEPARATOR) !== 0; |
|
40 | + return strpos($absolute, $root.DIRECTORY_SEPARATOR) !== 0; |
|
41 | 41 | } |
42 | 42 | |
43 | 43 | /** |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | |
101 | 101 | protected static function tryWriteDirectory(string $path): bool |
102 | 102 | { |
103 | - $path = rtrim($path, '/') . '/' . md5(mt_rand(1, 100) . mt_rand(1, 100)); |
|
103 | + $path = rtrim($path, '/').'/'.md5(mt_rand(1, 100).mt_rand(1, 100)); |
|
104 | 104 | if (($fp = fopen($path, 'ab')) === false) { |
105 | 105 | return false; |
106 | 106 | } |
@@ -2,13 +2,13 @@ |
||
2 | 2 | $host = $argv[1] ?? '127.0.0.1:9501'; |
3 | 3 | list($ip, $port) = explode(':', $host); |
4 | 4 | |
5 | -define('SUDA_APP', __DIR__ . '/app'); |
|
6 | -define('SUDA_DATA', __DIR__ . '/data'); |
|
7 | -define('SUDA_SYSTEM', __DIR__ . '/suda'); |
|
5 | +define('SUDA_APP', __DIR__.'/app'); |
|
6 | +define('SUDA_DATA', __DIR__.'/data'); |
|
7 | +define('SUDA_SYSTEM', __DIR__.'/suda'); |
|
8 | 8 | define('SUDA_PUBLIC', __DIR__); |
9 | 9 | define('SUDA_DEBUG', true); |
10 | 10 | define('SUDA_DEBUG_LEVEL', 'debug'); |
11 | -define('SUDA_APP_MANIFEST', SUDA_APP . '/manifest'); |
|
11 | +define('SUDA_APP_MANIFEST', SUDA_APP.'/manifest'); |
|
12 | 12 | |
13 | 13 | // 设置IP或者端口 |
14 | 14 | define('SUDA_SWOOLE_IP', $ip); |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | $replace['%level%'] = $level; |
58 | 58 | $replace['%message%'] = $message; |
59 | 59 | $write = strtr($this->getConfig('log-format'), $replace); |
60 | - fwrite($this->getAvailableWrite(), $write . PHP_EOL); |
|
60 | + fwrite($this->getAvailableWrite(), $write.PHP_EOL); |
|
61 | 61 | } |
62 | 62 | } |
63 | 63 | |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | } elseif (null === $val) { |
100 | 100 | $val = 'null'; |
101 | 101 | } |
102 | - $replace['{' . $key . '}'] = $val; |
|
102 | + $replace['{'.$key.'}'] = $val; |
|
103 | 103 | } |
104 | 104 | return strtr($message, $replace); |
105 | 105 | } |