2

我的 PHP 代码如下所示,它显示空白我想显示所有带有超链接的记录,如

<a href="test.php?id=$Id">$Name</a>

其中 $Id, $Name 来自 XML 提要

  $path = 'www.abc.com/test.xml';
  $ch = curl_init();
  curl_setopt($ch, CURLOPT_URL, $path);
  curl_setopt($ch, CURLOPT_FAILONERROR, 1);
  curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  curl_setopt($ch, CURLOPT_TIMEOUT, 15);
  $returned = curl_exec($ch);
  curl_close($ch);
  // $xml === False on failure
  $xml = simplexml_load_string($returned);

foreach( $xml->Name as $Name){
   print (string)$Name;
}

我的 XML 如下所示

<ABCXml version="1.1.0">
  <Manufacturers>
   <Item>
    <Id>219</Id>
    <Name>Matrix Corp</Name>
   </Item>
   <Item>
    <Id>2040</Id>
    <Name>Microcomputer</Name>
   </Item>
 </Manufacturers>
</ABCXml>
4

1 回答 1

3

您的 xml 对象以 Manufacturers 开头,其中包含多个包含名称和 ID 的项目。你需要找到他们。

foreach($xml->Manufacturers->Item as $item) {
    printf("<a href='test.php?id=%s>%s</a>", $item->Id, $item->Name);
}
于 2013-03-29T23:12:32.740 回答