<?php $x = new SplFixedArray(2); $x[1] = "a"; $x->{"1"} = "b"; $x->{"123"} = "c"; var_dump($x); var_dump(serialize($x)); var_dump(unserialize(serialize($x)));
You have javascript disabled. You will not be able to edit any code.