所以我有这个c#应用程序需要ping我运行linux/php堆栈的web服务器.
我遇到了基本64位编码字节的c#方式的问题.
我的c#代码如下:
byte[] encbuff = System.Text.Encoding.UTF8.GetBytes("the string"); String enc = Convert.ToBase64String(encbuff);
和PHP方面:
$data = $_REQUEST['in']; $raw = base64_decode($data);
更大的字符串100+字符失败.我认为这是因为c#在编码中加了'+'但不确定.任何线索
您可能应该在发送之前在C#端对您的Base64字符串进行URL编码.
和URL在base64解码之前在php端解码它.
C#方面
byte[] encbuff = System.Text.Encoding.UTF8.GetBytes("the string"); string enc = Convert.ToBase64String(encbuff); string urlenc = Server.UrlEncode(enc);
和PHP方面:
$data = $_REQUEST['in']; $decdata = urldecode($data); $raw = base64_decode($decdata);
请注意,这+
是base64编码中的有效字符,但在URL中使用时,通常会将其转换回空格.这个空间可能会混淆你的PHP base64_decode
函数.
您有两种方法可以解决此问题:
在离开C#应用程序之前,使用%-encoding对+字符进行编码.
在PHP应用程序中,在传递给base64_decode之前将空格字符转换回+.
第一种选择可能是你更好的选择.