$b = $a $b = array_merge(array(), $a); // reindex the array
// PHP will copy the array by default. $a = array(1,2); $b = $a; // $b will be a different array $c = &$a; // $c and $a will be the same array (same reference)