我今天无缘无故地收到了这个错误,因为我的 laravel 应用程序运行良好。
我的刀片中有这个价格代码:
<li>
@php
$totalPrice = Cart::all()->sum(function ($cart){
return (int) $cart['product']->price * (int) $cart['quantity'];
})
@endphp
<span>Total price : </span><span> {{ number_format((float)$totalPrice) }}</span>
</li>
但我有这个错误:
A non well formed numeric value encountered
在这一行:
return (int) $cart['product']->price * (int) $cart['quantity'];
在此之前number_format
,number_format((float)$price)
我的 ..