"Fabian Wleklinski" <Wl*************@eWorks.de> wrote in message
I get back a reference to the object automatically now?
Thats alright. But you have to use the &-operator a second
time when calling the function:
$referencedObject =& myCoolFunction();
(Yes. Really. It is ugly, but it is true. See [1].)
if I go:
$allEntries = & array_reverse($allEntries);
Then the array is returned by reference? PHP's memory usage is not
doubled in this exchange? At no point are copies made?
I need to do what I can to keep the memory to a minimum.