PHP base64_decode C#等价

时间:2009-03-17 23:03:31

标签: c# php base64

我正在尝试模仿执行以下操作的php脚本:

  1. 用+符号替换GET vaiable的每个空格($ var = preg_replace(“/ \ s /”,“+”,$ _ GET ['var']);)
  2. 解码为base64:base64_decode($ var);
  3. 我添加了一个执行base64解码的方法:

            public string base64Decode(string data)
        {
            try
            {
                System.Text.UTF8Encoding encoder = new System.Text.UTF8Encoding();
    
                System.Text.Decoder utf8Decode = encoder.GetDecoder();
    
                byte[] todecode_byte = Convert.FromBase64String(data);
                int charCount = utf8Decode.GetCharCount(todecode_byte, 0, todecode_byte.Length);
                char[] decoded_char = new char[charCount];
                utf8Decode.GetChars(todecode_byte, 0, todecode_byte.Length, decoded_char, 0);
                string result = new String(decoded_char);
                return result;
            }
            catch (Exception e)
            {
                throw new Exception("Error in base64Decode" + e.Message);
            }
        }
    

    但它接缝说UTF-8没有完成这项工作,所以我尝试了相同的方法,但使用的是UTF-7

            public string base64Decode(string data)
        {
            try
            {
                System.Text.UTF7Encoding encoder = new System.Text.UTF7Encoding();
    
                System.Text.Decoder utf7Decode = encoder.GetDecoder();
    
                byte[] todecode_byte = Convert.FromBase64String(data);
                int charCount = utf7Decode.GetCharCount(todecode_byte, 0, todecode_byte.Length);
                char[] decoded_char = new char[charCount];
                utf7Decode.GetChars(todecode_byte, 0, todecode_byte.Length, decoded_char, 0);
                string result = new String(decoded_char);
                return result;
            }
            catch (Exception e)
            {
                throw new Exception("Error in base64Decode" + e.Message);
            }
        }
    

    最后要说的是,成功的php解码包含特殊标志,如注册标志和商标标志,但C#版本没有!

    另外,php base64_decode是否受服务器语言的影响?

1 个答案:

答案 0 :(得分:9)

UTF-7不太可能是你想要的。你真的需要知道PHP正在使用什么编码。 可能正在使用系统的默认编码。幸运的是,解码比你制作它容易得多:

public static string base64Decode(string data)
{
    byte[] binary = Convert.FromBaseString(data);
    return Encoding.Default.GetString(binary);
}

没有必要明确地弄乱Encoder:)

另一种可能性是PHP使用的是ISO Latin 1,即代码页28591:

public static string base64Decode(string data)
{
    byte[] binary = Convert.FromBaseString(data);
    return Encoding.GetEncoding(28591).GetString(binary);
}

PHP手册无益地说:“在PHP 6之前,一个字符与一个字节相同。也就是说,可能有256个不同的字符。”遗憾的是它没有说明每个字节实际上意味着什么 ...