nesbert / nobjects

A collection of PHP classes for application development.
0 stars 2 forks source link

Object::toArray() *RECURSION* #2

Open nesbert opened 11 years ago

nesbert commented 11 years ago

See if there is optimal way of detecting recursion. I do not want to use print_r to find "RECURSION" label since this can be very expensive with complex data structures.

smoorhouse11 commented 10 years ago

What about tracking the visited objects using spl_object_hash()?