Iqiyi::getVrsEncodeCode PHP Method

getVrsEncodeCode() private static method

private static getVrsEncodeCode ( $_arg1 )
    private static function getVrsEncodeCode($_arg1)
    {
        $_local6;
        $_local2 = "";
        $_local3 = explode("-", $_arg1);
        $_local4 = count($_local3);
        $_local5 = $_local4 - 1;
        while ($_local5 >= 0) {
            $_local6 = static::getVRSXORCode(intval($_local3[$_local4 - $_local5 - 1], 16), $_local5);
            $_local2 = static::fromCharCode($_local6) . $_local2;
            $_local5--;
        }
        return $_local2;
    }