Guest User

Untitled

a guest
Apr 12th, 2017
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. $a = '1';
  2. $b = &$a;
  3. $b = "2$b";
  4. echo $a.", ".$b;
  5. The answer is 21, 21
  6.  
  7. why the first a value is 21 ??
Add Comment
Please, Sign In to add comment