Do not try to access non-existen string index.
The build was successful. 詳細

このコミットが含まれているのは:
Rafal Kupiec 2019-09-07 20:07:46 +02:00
コミット 91887c0185
署名者: belliash
GPGキーID: 4E829243E0CFE6B4
1個のファイルの変更4行の追加2行の削除

ファイルの表示

@ -55,8 +55,10 @@ class Base32 {
if(!in_array($input[$i], Base32::$map))
return '';
for(int $j = 0; $j < 8; $j++) {
if(array_key_exists($input[$i + $j], Base32::$flippedMap)) {
$x += str_pad(base_convert(Base32::$flippedMap[$input[$i + $j]], 10, 2), 5, '0', STR_PAD_LEFT);
if($i + $j < strlen($input)) {
if(array_key_exists($input[$i + $j], Base32::$flippedMap)) {
$x += str_pad(base_convert(Base32::$flippedMap[$input[$i + $j]], 10, 2), 5, '0', STR_PAD_LEFT);
}
}
}
string[] $eightBits = str_split($x, 8);