我正在尝试使用代码{{$data['short_sell_profit_loss'] }
$short_sell_profit_loss = "-15,000"
它给我一个错误:
htmlspecialchars()期望参数1为字符串,给定数组
解决这个问题的方法是什么?
答案 0 :(得分:0)
{{}}
使用PHP htmlspecialchars()
,它需要使用字符串作为参数。
错误表明$data['short_sell_profit_loss']
是一个数组
您可以尝试在将此代码返回控制器之前尝试放置此代码,以了解该变量中存储了哪种值。
dd($data['short_sell_profit_loss']);