3v4l.org

run code in 300+ PHP versions simultaneously
<?php $obj = (object) [ 'foo' => 'bar', 'foo2' => 'bar2' ]; $coll = collect($obj); var_dump($coll[0]); // returns object // but what about... // $coll->foo // Or dump($coll[0]) .. // The end goal is object in ... do collection stuff on it ... object out. // This is not possible without ->toArray and then (object) on that array.

preferences:
25.87 ms | 404 KiB | 5 Q