Passing by value is the normal behavior of PHP. So when you just write $a = $b the value of $b will be assigned to $a.
What you wrote is a reference assignment, declaring $a to be a reference to the variable that is identified by the value of $b (see variable variable).