grabmail
04-28-2006, 06:24 AM
if i do this:
$arr = $obj->arr
$arr = null;
I will make $obj->arr null since by default, php 5 reference obj variables.
But i do not want to refer to it. I want to make a copy of it. How do i do so?
$arr = $obj->arr
$arr = null;
I will make $obj->arr null since by default, php 5 reference obj variables.
But i do not want to refer to it. I want to make a copy of it. How do i do so?
