如何在php中使用foreach()显示数组中的数据?

时间:2011-11-10 08:16:05

标签: php

如何在php中使用foreach()显示数组中的数据?我想这样做,所以它在href中显示一个新行。

2 个答案:

答案 0 :(得分:4)

为此您可以使用

  <?php
     $x=array("one","two","three");
      foreach ($x as $value)
      {
       // echo '<a href="'.$value.'">'.$value.'</a><br />';
       echo $value . "<br />";
    //as your requirements..
       }

输出:

       one
     two
    three

答案 1 :(得分:2)

<?php foreach($yourarray as $array){?>
<a href="#"><?php $array['index'] ?></a>
<?php }?>

你的意思是如上所述吗?