Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

--TEST-- PHP5.5 Finally keyword --SKIPIF-- <?php if (version_compare(PHP_VERSION, '5.5', ..

Decoded Output download

--TEST--
PHP5.5 Finally keyword
--SKIPIF--
<?php 
if (version_compare(PHP_VERSION, '5.5', '<')) exit("Skip This test is for PHP 5.5 only.");
?>
--FILE--
<?php
try {
  echo '1';
  throw new Exception('e');
} catch (Exception $e) {
  echo '2';	
} finally {
  echo '3';
}
--EXPECT--
123 ?>

Did this file decode correctly?

Original Code

--TEST--
PHP5.5 Finally keyword
--SKIPIF--
<?php 
if (version_compare(PHP_VERSION, '5.5', '<')) exit("Skip This test is for PHP 5.5 only.");
?>
--FILE--
<?php
try {
  echo '1';
  throw new Exception('e');
} catch (Exception $e) {
  echo '2';	
} finally {
  echo '3';
}
--EXPECT--
123

Function Calls

None

Variables

None

Stats

MD5 9466af1e9f77780378803f27e16aaa64
Eval Count 0
Decode Time 107 ms