If i assign a value to a variable like this in PHP:
$var1 = 123;
and then assign another value to another variable like this:
$var2 = $var1;
Are those two variables pointing to the same value in the memory (like in Java if I'm not mistaken) or are they two copies of the same value?