我正在尝试从我的选择查询中获取最后一行值。
这是我使用ADODB的PHP查询:
$con->Execute("SET @depos=0");
$con->Execute("SET @total=$openingbalance");
$sql = "SELECT if( credit >0, @depos := credit , @depos := @depos + credit - debit ) AS depos_bal, @total := @total + `credit` - `debit` AS net_bal FROM `table` WHERE `mydate` < '".$monthstarts."' ORDER BY `mydate` ASC, `credit` DESC";
$ssresults=$con->Execute($sql);
$fnew = $ssresults->getrows();
for($i=0;$i<count($fnew);$i++)
{
$bal = $fnew[$i]['net_bal'];
}
echo $bal;
这里我想从循环中获取最后一行值。
例如:
Balance
----------
150.00
250.00
350.00
600.00
850.52 <----- this is the row I want to fetch from the query.
我该怎么取这个?请帮助!
答案 0 :(得分:1)
不需要for循环试试这个: -
$fnew = $ssresults->getrows();
$bal = $fnew[count($fnew)-1]['net_bal'];
echo $bal;
注意: - count
给出数组中存在的元素总数。和数组索引从0
开始,所以count($fnew)-1
给你最后一条记录。感谢。