Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $a .= "a";
  2. $a .= "b";
  3. $a .= "c";
  4.  
  5. $a .= "a"
  6.  
  7. $a = $a . "a"
  8.  
  9. $a .= "a"
  10. // now $a == "a"
  11. $a .= "b"
  12. // now $a == "a" . "b" == "ab"
  13. $a .= "c"
  14. // now $a == "ab" . "c" == "abc"
  15.  
  16. $a = $a . "a"
  17. $a .= "a"
  18.  
  19. $a .= "a";
  20. $a .= "b";
  21. $a .= "c";
  22. echo $a;
  23.  
  24. $a .= "a"; // $a =$a . 'a' ie a= 'a'
  25. $a .= "b"; // $a =$a . 'b' ie a= 'ab'
  26. $a .= "c"; // $a =$a . 'c' ie a= 'abc'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement