private function Decoder::decodeUint in Smart IP 6.2
Same name and namespace in other branches
- 7.2 includes/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php \MaxMind\Db\Reader\Decoder::decodeUint()
3 calls to Decoder::decodeUint()
- Decoder::decodeByType in includes/
vendor/ maxmind-db/ reader/ src/ MaxMind/ Db/ Reader/ Decoder.php - Decoder::decodePointer in includes/
vendor/ maxmind-db/ reader/ src/ MaxMind/ Db/ Reader/ Decoder.php - Decoder::sizeFromCtrlByte in includes/
vendor/ maxmind-db/ reader/ src/ MaxMind/ Db/ Reader/ Decoder.php
File
- includes/
vendor/ maxmind-db/ reader/ src/ MaxMind/ Db/ Reader/ Decoder.php, line 226
Class
Namespace
MaxMind\Db\ReaderCode
private function decodeUint($bytes) {
list(, $int) = unpack('N', $this
->zeroPadLeft($bytes, 4));
return $int;
}