All pastes #2053450 Raw Edit

Someone

public text v1 · immutable
#2053450 ·published 2011-05-03 12:57 UTC
rendered paste body
~ $ cat test.php
<?php

$x = 1;
switch ($x) {
case $x++:
        print "here\n";
        break;
case $x:
        print "there\n";
}

switch ((int)$x) {
case $x++:
        print "here\n";
        break;
case $x:
        print "there\n";
}
~ $ php test.php
there
here