<?php $arr = (object) [ 'children' => [] ]; $arr->children[] = 1; print_r($arr); class Test { public function test(){ $arr = (object) [ 'children' => [] ]; $arr->children[] = 1; return $arr; } } $o = new Test(); $o->test(); print_r( $o->test() );
You have javascript disabled. You will not be able to edit any code.