Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.16 KB | None | 0 0
  1. //1)
  2. $foo = "bar";
  3. if(true){
  4.     $foo = "bla";
  5. }
  6.  
  7. $res = ($foo === "bla"); //true
  8.  
  9. //2)
  10. if(true){
  11.     $foo = "bla";
  12. }
  13.  
  14. $res = ($foo === "bla"); //true <-oder?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement