Adldap\Utilities::littleEndian PHP Method

littleEndian() public static method

Converts a little-endian hex number to one that hexdec() can convert.
public static littleEndian ( string $hex ) : string
$hex string A hex code
return string
    public static function littleEndian($hex)
    {
        $result = '';
        for ($x = strlen($hex) - 2; $x >= 0; $x = $x - 2) {
            $result .= substr($hex, $x, 2);
        }
        return $result;
    }