我正在做一个名为 FUND 的 crud,我可以使用 PHP implode方法在其中存储许多东西以及一个数组。在那个数组中,我存储了一些 FUND Id。这是数组创建代码:
<div class="custom-checkbox">
<label for="receive[]">Select Receive Funds</label>
@foreach($funds as $fund)
<div class="custom-control custom-checkbox">
<input class="custom-control-input" type="checkbox" name="receive[]" id="{{$fund->id}}" value="{{$fund->id}}">
<label for="{{$fund->id}}" class="custom-control-label">{{$fund->title}}</label>
</div>
@endforeach
这是商店代码:
public function store(Request $request)
{
$request->validate([
'title'=>'required',
'image'=>'required',
'description',
'available'=>'required',
'buy'=>'required',
'account',
'receive',
]);
$image = $request->file('image');
$new_name = rand() . '.' . $image->getClientOriginalExtension();
$image->move(public_path('funds'), $new_name);
$form_data = array(
'title'=>$request->title,
'image'=>$new_name,
'description'=>$request->description,
'available'=>$request->available,
'buy'=>$request->buy,
'buyrate'=>$request->buyrate,
'sellrate'=>$request->sellrate,
'account'=>$request->account,
'receive'=>implode(',', (array)($request->receive)),
);
Fund::create($form_data);
return redirect('/admin/fund');
}
我正在使用 PHP explode方法在我的索引页面上显示该数组。
$receive=[];
foreach($funds as $fund){
$receive = explode(",",$fund->receive);
}
正如我提到的,我将基金 ID 存储在该数组中。所以我想通过使用基金 ID 来显示整行。为此,我正在使用以下查询:
但是标题图片显示是这样的
如何在没有任何括号的情况下获取 Title、Image 和其他人员?
冉冉说
有只小跳蛙