Skip to content

Commit e97d9d0

Browse files
authored
fix: undefined offset (#4)
* fix: undefined offset close swlib/saber#100 * add getLastKey * refactor: getRedirectsTrace * fix typo * fix typo * fix typo
1 parent e946f12 commit e97d9d0

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

src/Exception/TooManyRedirectsException.php

+7-3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
use Exception;
1111
use Swlib\Http\Request;
1212
use Swlib\Http\Response;
13+
use Swlib\Http\Util;
1314

1415
class TooManyRedirectsException extends RequestException
1516
{
@@ -24,7 +25,7 @@ public function __construct(
2425
) {
2526
$this->redirect_headers = $redirects;
2627
$times = count($redirects);
27-
$location = $this->redirect_headers[$times - 1];
28+
$location = Util::getLastKey($this->redirect_headers);
2829
$message = "Too many redirects! more than {$times} times to {$location} !";
2930
parent::__construct($request, $response, $code, $message, $previous);
3031
}
@@ -37,8 +38,11 @@ public function getRedirectHeaders(): array
3738
public function getRedirectsTrace(): string
3839
{
3940
$trace = '';
40-
foreach (array_keys($this->redirect_headers) as $index => $location) {
41-
$trace .= "#$index $location\n";
41+
$index = 0;
42+
43+
foreach ($this->redirect_headers as $location => $redirect_headers) {
44+
$trace .= "#{$index} {$location}\n";
45+
$index++;
4246
}
4347

4448
return $trace;

src/Util.php

+12
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,16 @@ public static function parseHeaders(string $raw_header): array
101101
return self::parseHeader($raw_header[0]);
102102
}
103103
}
104+
105+
/**
106+
* 获取数组最后一个键名
107+
*
108+
* @param array $array
109+
* @return int|string|null
110+
*/
111+
public static function getLastKey(array $array)
112+
{
113+
end($array);
114+
return key($array);
115+
}
104116
}

0 commit comments

Comments
 (0)