1. 
$a = "hello"; 
$b = &$a; 
unset($b); 
$b = "world"; 
what is $a? 

2. 
$a = 1; 
$x = &$a; 
$b = $a++; 
what is $b? 

 

相关文章: