phprcp .net版报错误:System.FormatException: 输入字符串的格式不正确。

这两天在做一个.net项目,需要采用PHPRPC做接口开发。使用的phprpc版本是 3.0.2  

在开发时遇到System.FormatException: 输入字符串的格式不正确。

phprcp .net版报错误:System.FormatException: 输入字符串的格式不正确。

经过 断点查代码,发现是phprpc源码中,获取版本号错误。

于是修改获取版号的方法即可,具体修改方法为修改PHPRPC_Client.cs第394t行,把 version = Double.Parse(xPoweredBy.Substring(pos + 14))改为 version = Double.Parse(xPoweredBy.Substring(pos + 14,3));

phprcp .net版报错误:System.FormatException: 输入字符串的格式不正确。

希望能给使用PHPRPC做.net开发的朋友帮助。

phprcp .net版报错误:System.FormatException: 输入字符串的格式不正确。,布布扣,bubuko.com

phprcp .net版报错误:System.FormatException: 输入字符串的格式不正确。

上一篇:web开发中添加分享按钮


下一篇:PHP的安全模式和保安措施(Warning: SAFE MODE Restriction in effect.警告)