php unset引用变量后不会删除值

$a =123; $b = &$a; unset($a); echo $b; 结果仍是:123
相关文章
相关标签/搜索