I have a question regarding ArrayObject. I wanted to use array_slice in an ArrayObject class and I couldn’t. Is there a way to do it, without needing to write an “slice” method to the class that implements ArrayObject?
I have a question regarding ArrayObject. I wanted to use array_slice in an ArrayObject
Share
Having a class that wraps php array functions is not that bad idea. Will make code much cleaner.
Just like a normal language, you know.