0

试试这个查询:

http://www.dictionaryapi.com/api/v1/references/collegiate/xml/gobabola?key=135a6187-af83-4e85-85c1-1a28db11d5da

我如何简单地将建议作为变量读入?我似乎找不到任何可以解释这一点的东西。

4

1 回答 1

1

您可以使用 SimpleXmlIterator。这真的很容易使用,您将能够对您将获得的对象执行 foreach。

库源

例如,如果您愿意,可以使用 file_get_contents 或替换为 curl:

    $feed = new SimpleXmlIterator(file_get_contents('http://www.dictionaryapi.com/api/v1/references/collegiate/xml/gobabola?key=135a6187-af83-4e85-85c1-1a28db11d5da'));
    foreach ($feed->suggestion as $suggestion) {
        echo $value;
      }
于 2013-07-16T11:27:06.483 回答