Is there a function make a copy of a PHP array to another?
I have been burned a few times trying to copy PHP arrays. I want to copy an array defined inside an object to a global outside it.
|
|
|
In PHP arrays are assigned by copy, while objects are assigned by reference. This means that:
Will yield:
Whereas:
Yields:
You could get confused by intricacies such as |
|||||||||||||
|
|
PHP will copy the array by default. References in PHP have to be explicit.
|
|||
|
|
|
When you do
PHP copies the array, so I'm not sure how you would have gotten burned. For your case,
should work fine. In order to get burned, I would think you'd either have to have been using references or expecting objects inside the arrays to be cloned. |
|||
|
|
|
|
||||
|
|