我使用此代码来阅读 C# 上的 xml 值
XmlDocument doc1 = new XmlDocument();
doc1.Load("http://apps.db.ripe.net/whois/search.xml?query-string=" + textBox1.Text + "&source=ripe");
descr_1 = doc1.SelectSingleNode("/whois-resources/objects/object[@type=\"route\"]/attributes/attribute[@name=\"descr\"]");
现在我需要在 php 上使用相同的值,这可能吗?