Decompiler: && || and or
git-svn-id: svn://svn.lighttpd.net/xcache/trunk@802 c26eb9a1-5813-0410-bd6c-c2e55f420ca73.0
parent
6213915975
commit
9bd790b519
1504
Decompiler.class.php
1504
Decompiler.class.php
File diff suppressed because it is too large
Load Diff
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue