Sslurp\MozillaCertData::decodeChunkedString PHP Метод

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

protected decodeChunkedString ( $string )
    protected function decodeChunkedString($string)
    {
        $result = '';
        $currentPos = 0;
        $stringLength = strlen($string);
        while ($currentPos < $stringLength) {
            $position = strpos($string, "\r\n", $currentPos);
            $length = hexdec(substr($string, $currentPos, $position - $currentPos));
            $result .= substr($string, $position + 2, $length);
            $currentPos = $position + 2;
        }
        return $result;
    }