有没有可能将 .NET 应用程序与 PHP 连接起来?我的意思是,PHP 会将 XML 或 JSON 文件返回给 .NET,如果数据是 XML,.NET 将使用 LINQ。如果有可能,我该怎么做?
有什么例子吗?
您可以创建一个返回 JSON/XML 的 PHP 应用程序。然后在您的 dot net 应用程序中,您可以访问它(与访问 web 服务/REST 服务的方式相同)。您可以使用HttpWebRequest
该类来访问这样的服务。
string restURL="www.yoursite.com/yourphpwebservice.php";
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(restURL);
request.Method = "GET";
request.Accept = "text/xml";
request.ContentType = "text/xml";
response = (HttpWebResponse)request.GetResponse();
if (response.StatusCode == HttpStatusCode.OK)
{
using (WebResponse response2 = request.GetResponse())
using (Stream stream = response2.GetResponseStream())
{
XElement myXel = XElement.Load(stream);
if (myXel != null)
{
//now you can access the XML elements with LINQtoXML
}
}
}
如果您通过 PHP 返回 XML 文件,则可以使用 .NETXDocument
类:
XDocument xdoc = XDocument.Load("data.xml");
var query = from xml in xdoc.Descendants("node")
select new {
Attribute1 = lv1.Attribute("Attribute1").Value,
Attribute2 = lvl1.Attribute("Attribute2").Value
};