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-- Test new DateTime() : error conditions --FILE-- <?php //Set the default time zone..
Decoded Output download
--TEST--
Test new DateTime() : error conditions
--FILE--
<?php
//Set the default time zone
date_default_timezone_set("GMT");
echo "*** Testing date_create() : error conditions ***
";
echo "
-- Testing new DateTime() with more than expected no. of arguments --
";
$time = "GMT";
$timezone = timezone_open("GMT");
$extra_arg = 99;
try {
var_dump( new DateTime($time, $timezone, $extra_arg) );
} catch (TypeError $e) {
echo $e->getMessage(), "
";
}
?>
--EXPECT--
*** Testing date_create() : error conditions ***
-- Testing new DateTime() with more than expected no. of arguments --
DateTime::__construct() expects at most 2 arguments, 3 given
Did this file decode correctly?
Original Code
--TEST--
Test new DateTime() : error conditions
--FILE--
<?php
//Set the default time zone
date_default_timezone_set("GMT");
echo "*** Testing date_create() : error conditions ***\n";
echo "\n-- Testing new DateTime() with more than expected no. of arguments --\n";
$time = "GMT";
$timezone = timezone_open("GMT");
$extra_arg = 99;
try {
var_dump( new DateTime($time, $timezone, $extra_arg) );
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECT--
*** Testing date_create() : error conditions ***
-- Testing new DateTime() with more than expected no. of arguments --
DateTime::__construct() expects at most 2 arguments, 3 given
Function Calls
date_default_timezone_set | 1 |
Stats
MD5 | 388bd4f80a9a35b0d99d939c706bda62 |
Eval Count | 0 |
Decode Time | 85 ms |