gpt4 book ai didi

php - 表格数据格式化(来自数据库的数据)

转载 作者:行者123 更新时间:2023-11-28 00:50:25 25 4
gpt4 key购买 nike

获取数组数据并使用 explode 我已经分离了内容。现在,我想在列表中打印这些数据。但是产品是在线打印的。我尝试使用“break tag”和“list tag”各种可能的方式。

这是代码

 <tbody id="test">
@foreach ($data['samplingData'] as $key => $samplingData)
<tr> <td>{{$samplingData->doctor_name}}</td>
<td>{{$samplingData->date}}</td>
@foreach(explode(',', $samplingData->products) as $product)
<td> {{$product}} </td>
@endforeach

<td>{{$samplingData->quantity}}</td> </tr>

@endforeach
</tbody>

数据是这样打印的

Name    date      products    quantity
a 12-12-12 a a a a 1 1 1 1

我想这样打印

Name    date      products    quantity
a 12-12-12 a 1
a 1
a 1

我尝试在 td 中添加 tr 以及在 td 中添加 list。

请帮我格式化数据。

最佳答案

基本上您正在创建 <td>对于每个 $product .

 <td>@foreach(explode(',', $samplingData->products) as $product) {{$product}} <BR/> @endforeach</td>

关于php - 表格数据格式化(来自数据库的数据),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53246367/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com