我已经在一个简单的mysql表中设置了价格,我想输出他们选择的“服务”的总价格。我能够使用Laravel 4来实现这一点,但是我知道如何做到这一点的唯一方法是使用foreach循环。但这将返回所有具有服务的记录,然后在返回每一行时将其添加。我如何只获取foreachloop中返回的最后一行?还是他们的更好方法?
佛瑞奇
@foreach ($serviceSummary as $services)
<tr><td>Total:</td><td>{{{ $zero += $services->price }}}</td></tr>
@endforeach
表中的Var Dump
var_dump($ serviceSummary);死;
array(2) {
[0]=>
object(stdClass)#211 (9) {
["id"]=>
string(1) "1"
["userID"]=>
string(1) "1"
["services"]=>
string(1) "1"
["price"]=>
string(4) "8.95"
["created_at"]=>
string(19) "2013-10-08 19:55:47"
["updated_at"]=>
string(19) "2013-10-08 19:55:47"
["service"]=>
string(20) "Service"
["count"]=>
string(1) "1"
["label"]=>
string(2) "RC"
}
[1]=>
object(stdClass)#212 (9) {
["id"]=>
string(1) "1"
["userID"]=>
string(1) "1"
["services"]=>
string(1) "1"
["price"]=>
string(4) "8.95"
["created_at"]=>
string(19) "2013-10-08 20:38:56"
["updated_at"]=>
string(19) "2013-10-08 20:38:56"
["service"]=>
string(20) "Service"
["count"]=>
string(1) "1"
["label"]=>
string(2) "RC"
}
}
基本上,打印时的外观是:
Total: 8.95
Total: 17.9
我显然希望总数是17.9
最佳答案
Laravel的查询生成器功能sum()不会成功吗?
在您的控制器中:
$totalCost = DB::table('tableName')
->sum('price');
return View::make('your.view', array('totalCost' => $totalCost));
然后在刀片模板中:
Total: {{{ $totalCost }}}
关于php - 从mysql字段获取总计,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19262137/