php make array new stdclass objects code example
Example 1: object php
//object init
$object = (object) [
'propertyOne' => 'foo',
'propertyTwo' => 42,
];
Example 2: php object(stdclass) to array
$array = json_decode(json_encode($object), true);