PHP - Object References Vs. Object Copies (Pass by reference or pass by copy)
Friday, June 2nd, 2006An important concept in programming is pointers. Even though we don’t directly use them in most modern languages the way we used to (think C/C++) they still come back to haunt us. In many modern languages they are referred to as references. References aren’t quite pointers, but they do resemble them enough to illustrate the […]

