Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/clone/wp-conte.../plugins/wordfenc.../vendor/wordfenc.../mmdb-rea.../src
File: IntegerParser.php
<?php
[0] Fix | Delete
[1] Fix | Delete
namespace Wordfence\MmdbReader;
[2] Fix | Delete
[3] Fix | Delete
class IntegerParser {
[4] Fix | Delete
[5] Fix | Delete
public static function parseUnsigned($handle, $length) {
[6] Fix | Delete
$value = 0;
[7] Fix | Delete
for ($i = 0; $i < $length; $i++) {
[8] Fix | Delete
$byte = $handle->readByte();
[9] Fix | Delete
$value = ($value << 8) + $byte;
[10] Fix | Delete
}
[11] Fix | Delete
return $value;
[12] Fix | Delete
}
[13] Fix | Delete
[14] Fix | Delete
}
[15] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function