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

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

Hex string of signed long 32bit big-endian to int form.
protected hexSLong32Be2Int ( string $hex ) : integer
$hex string
Результат integer
    protected function hexSLong32Be2Int($hex)
    {
        return unpack('l1int', hex2bin($hex))['int'];
    }