简体   繁体   中英

Cannot access collection by properties Laravel 5.8

So I have three different arrays with the same length in the request and below is how I combine them into one collection:

$inputs = collect();
$keys = collect(['id', 'username', 'email']);
foreach ($request['ids'] as $index => $id) {
   $username = $request['usernames'][$index];
   $email = $request['emails'][$index];
   $inputs->push($keys->combine([$id, $username, $email]));
}

The result looks correct to me:

在此处输入图片说明

However, I cannot access the collection when I iterate over it:

foreach ($inputs as $input) {
    dd($input->id); // Property [id] does not exist on this collection instance.
}

This is the result of dd($input):

在此处输入图片说明

Any pointers on this problem? (Another short way to combine the arrays into one collection will also be appreciated!)

Thank you.

这是一个集合,您应该像这样获得它: dd($input['id'])

You can combine arrays bt array_merge

array_merge($a1,$a2)

or collect

$c=collect([$arr1,$arr2])

then pluck if you want

$c->pluck('username')

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM