0

我使用此代码来阅读 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 上使用相同的值,这可能吗?

4

1 回答 1

0

php 处理 html 表单数据的方式也有点不同,所以我没有把 textBox1 放在这里,但你应该可以很容易地找到它。

$sxe = new SimpleXMLElement("http://apps.db.ripe.net/whois/search.xml", NULL, TRUE);
$sxe->xpath("/whois-resources/objects/object[@type=\"route\"]/attributes/attribute[@name=\"descr\"]");
于 2013-09-26T00:13:31.090 回答