LdapTools\Utilities\NumberUtilitiesTrait::hexUShort16Le2Int PHP Метод

hexUShort16Le2Int() защищенный Метод

Hex string of unsigned short 16bit little-endian to int form.
protected hexUShort16Le2Int ( string $hex ) : integer
$hex string
Результат integer
    protected function hexUShort16Le2Int($hex)
    {
        return unpack('v1int', hex2bin($hex))['int'];
    }