1
0
Fork 0

Decompiler: && || and or

git-svn-id: svn://svn.lighttpd.net/xcache/trunk@802 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
3.0
Xuefer 2011-04-27 04:42:25 +00:00
parent 6213915975
commit 9bd790b519
2 changed files with 766 additions and 742 deletions

File diff suppressed because it is too large Load Diff

View File

@ -249,8 +249,8 @@ $a = (unset) $b;
$a = (array) $b;
$a = (object) $b;
// PHP6+ $a = (scalar) $b;
$a = $b ? $c : $d;
$a = f1() ? f2() : f3();
$a = ($b ? $c : $d);
$a = (f1() ? f2() : f3());
$a = $b and $c;
$a = $b or $c;
$a = $b && $c;