fork download
  1. <?php
  2. $a = 0;
  3. $c = ++$a;
  4. $b = $a++;
  5. var_dump ($a, $b, $c, $b + $c);
  6.  
  7. //https://pt.stackoverflow.com/q/226847/101
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
int(2)
int(1)
int(1)
int(2)