Just wondering about the performance impact of copying very large php variables. For example say $arr is an enormous array. If I do $arr2 = $arr, is this a deep copy or is $arr2 merely a pointer to $arr like it is in Java? Thanks in advance.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
If you want a "pointer" instead of a copy, use |
|||
|
|
|
The general rule in PHP is don't create references unless you need the functionality they provide. References will only make the code slower otherwise. |
|||
|
|