Created
September 16, 2015 11:32
-
-
Save viralvadgama/cf14d566b18357ffcef2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$a = 5; | |
$b = 2; | |
// status after evaluation | |
// initaial 5,2 | |
$a = $a + $b; // 7,2 | |
$b = $a - $b; // 7,5 | |
$a = $a - $b; // 2,5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment