<?php
$a = 1;
$b = $a;
$a = 7;
echo $b;

毫无疑问,$b的值为1,当时当你用&引用赋值是就能同步$b和$a的值。

<?php
$a = 1;
$b = &$a;
$a = 7;
echo $b;

这样以后$b就为7了。