-1

我有这个 php 代码:

$tunnid = array();
while ($row = mysql_fetch_assoc($result)) {
    $tunnid[] = $row['total'];

  }

$this->set('tunnid', $tunnid);
mysql_free_result($result); 

为了显示它,我有这个:

<?php
if(!empty($tunnid)) {
    foreach($tunnid as $tund) {
echo "$tunnid";

    }

}

由于某种原因,这会返回 ArrayArrayArrayArray

我在这里做错了什么?谢谢

4

1 回答 1

4

你有一个小错字

<?php
if(!empty($tunnid)) {
     foreach($tunnid as $tund) {
     echo "$tund"; //not tunnid

   }

}
于 2013-06-14T09:15:37.537 回答