<?php // gc_disable(); // <-- if this comment is removed, everything works as expected $a = array(); $b = new SplObjectStorage(); for ($i = 10000; $i > 0; $i--) { $object = new StdClass(); $a[] = $object; $b->attach($object); } $c = serialize(array($a, $b)); $d = unserialize($c); echo "ok";
You have javascript disabled. You will not be able to edit any code.