This website works better with JavaScript.
Home
Help
Register
Sign In
xcache
/
xcache
Watch
1
Star
0
Fork
0
Code
Releases
44
Activity
Browse Source
Decompiler: multiple catch support for PHP 5.1-
git-svn-id: svn://svn.lighttpd.net/xcache/trunk@1340 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
3.1
Xuefer
7 years ago
parent
c3ecacac4e
commit
b3c077134b
1 changed files
with
6 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
mod_disassembler/sample.cpp.php
+ 6
- 0
mod_disassembler/sample.cpp.php
View File
@ -371,6 +371,9 @@ do {
catch
(
InnerException
$e
)
{
echo
$e
;
}
catch
(
InnerException2
$e2
)
{
echo
$e2
;
}
#if PHP_VERSION >= 550
finally
{
echo
'inner finally'
;
@ -382,6 +385,9 @@ do {
catch
(
OuterException
$e
)
{
echo
$e
;
}
catch
(
OuterException2
$e2
)
{
echo
$e2
;
}
#if PHP_VERSION >= 550
finally
{
echo
'outer finally'
;
Write
Preview
Loading…
Cancel
Save