Using ArrayObject

Using ArrayObject

am 09.03.2010 15:18:43 von Peter van der Does

What is the advantage of using ArrayObject to build a Registry class?

--
Peter van der Does

GPG key: E77E8E98

IRC: Ganseki on irc.freenode.net
Twitter: @petervanderdoes

WordPress Plugin Developer
Blog: http://blog.avirtualhome.com
Forums: http://forums.avirtualhome.com
Twitter: @avhsoftware

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: Using ArrayObject

am 09.03.2010 15:35:58 von Timo Witte

you can use ArrayObject functions?
an Object is always easier to handle / convert.
instead of $serialized = serialize($array);
you can do things like $serialized = (string)$arrayObject; and things
like that.

Peter van der Does wrote:
> What is the advantage of using ArrayObject to build a Registry class?
>

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php