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-- Cloning unconstructed IntlDateFormatter --EXTENSIONS-- intl --FILE-- <?php class..
Decoded Output download
--TEST--
Cloning unconstructed IntlDateFormatter
--EXTENSIONS--
intl
--FILE--
<?php
class A extends IntlDateFormatter {
function __construct() {}
}
$a = new A;
try {
$b = clone $a;
} catch (Exception $e) {
var_dump($e->getMessage());
}
?>
--EXPECTF--
string(%s) "Cannot clone unconstructed IntlDateFormatter"
Did this file decode correctly?
Original Code
--TEST--
Cloning unconstructed IntlDateFormatter
--EXTENSIONS--
intl
--FILE--
<?php
class A extends IntlDateFormatter {
function __construct() {}
}
$a = new A;
try {
$b = clone $a;
} catch (Exception $e) {
var_dump($e->getMessage());
}
?>
--EXPECTF--
string(%s) "Cannot clone unconstructed IntlDateFormatter"
Function Calls
None |
Stats
MD5 | 51b7ca4e66a626930d009ad05f3d8c32 |
Eval Count | 0 |
Decode Time | 102 ms |