我在mysql中有此表,表“距离”:

  id |距离|
  1 | 8 |
  2 | 5 |
  3 | 7 |


我想要这样的输出:

8 5 7
8 5 7
8 5 7


如何在php中编写代码?谢谢,我是PHP的新手。

最佳答案

这样尝试

$tableRows[0]=array("id"=>1,"distance"=>8);
$tableRows[1]=array("id"=>2,"distance"=>5);
$tableRows[2]=array("id"=>3,"distance"=>7);
$counter=0;
foreach($tableRows as $tableRow)
{
    foreach($tableRows as $tableRow)
    {
        echo $tableRow["distance"]."\t";
    }
    echo "\n";
}


Online demo

10-06 05:21