1
0
Fork 0

prepare for decompile if/else

git-svn-id: svn://svn.lighttpd.net/xcache/trunk@792 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
This commit is contained in:
Xuefer 2011-04-25 15:46:26 +00:00
parent 597c9b743a
commit b7ce02e3d6
1 changed files with 13 additions and 4 deletions

View File

@ -270,13 +270,22 @@ catch (OuterException $e) {
echo $e;
}
if ($a) {
echo 'if ($a)';
if (if_()) {
echo 'if';
if (innerIf_()) {
echo 'if innerIf';
}
}
else if ($b) {
echo 'else if ($b)';
else if (elseif_()) {
echo 'else if';
if (innerIf_()) {
echo 'if innerIf';
}
}
else {
if (innerIf_()) {
echo 'if innerIf';
}
echo 'else';
}