Show
Ignore:
Timestamp:
04/27/2011 06:42:25 AM (2 years ago)
Author:
moo
Message:

Decompiler: && and or

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/decompilesample.php

    r799 r802  
    250250$a = (object) $b; 
    251251// PHP6+ $a = (scalar) $b; 
    252 $a = $b ? $c : $d; 
    253 $a = f1() ? f2() : f3(); 
     252$a = ($b ? $c : $d); 
     253$a = (f1() ? f2() : f3()); 
    254254$a = $b and $c; 
    255255$a = $b or $c;