What is the exact purpose of a statement like this?
$myObj =& $existingObject
Is this extending $myObj with the properties and methods of $existingObject?
What does the equals sign (=) and the ampersand (&) married together here do?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Um first of all,
&=and=&are two different things. Which is it?&=is a bitwise and with the righthand side=&is better written as= &(with a space), is assigning something as a reference.