排序然后输出的问题

时间:2010-12-18 15:02:07

标签: php

我使用下面的PHP生成一些HTML输出:

<?php

$url = "images.xml";
$xmlstr = file_get_contents($url);
$xml = new SimpleXMLElement($xmlstr);  
$images = array();
$ids = array();

foreach ($xml->image as $image) {

    $images[]['id'] = $image -> id;
    $images[]['link'] =  $image->href;
    $images[]['src'] = $image->source;
    $images[]['title'] = $image->title;
    $images[]['alt'] = $image->alt;
    $ids[] = $image -> id;
}

array_multisort($ids, SORT_ASC, $images);

foreach ($images as $image){
    echo "<a href='".$image['link']."'><img src='".$image['src']."' alt='".$image['alt']."' title='".$image['title']."' /></a>";
}
?>

如果我在这里更改代码:

foreach ($images as $image){
echo $image['link'];
    echo "Item";
}

我得到图像链接3次,这是正确的,因为XML中有3条记录。但我得到12份文本项目。

为什么会这样?

1 个答案:

答案 0 :(得分:3)

您将每个属性放在数组中的新行中。 试试这个:

foreach ($xml->image as $image)
{
    $images[] = array(
        'id' => $image->id,
        'link' => $image->href,
        'src' => $image->source,
        'title' => $image->title,
        'alt' => $image->alt
    );

    $ids[] = $image -> id;
}