Skip to content

Instantly share code, notes, and snippets.

@viralgh
Created September 16, 2015 11:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save viralgh/cf14d566b18357ffcef2 to your computer and use it in GitHub Desktop.
Save viralgh/cf14d566b18357ffcef2 to your computer and use it in GitHub Desktop.
<?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