0
我使用Laravel的,我有這樣的的foreach函數訪問多個變量
$name = person::find(1);
foreach($name as $dbitems) {
$person->services()->updateOrCreate([
'service' => $dbitems->Name,
'time' => $dbitems->Time
'price' => $anotherarrayhere
]);
}
在$ anotherarrayhere的地方一個foreach功能,我想從的foreach功能外這個數組。
$anotherarrayhere = $peopleserviceprice[]
如何在上述foreach函數中包含$ anotherarrayhere變量?