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 clone of objects whose class derived from DateTime class --FILE-- <?php //Se..
Decoded Output download
--TEST--
Test clone of objects whose class derived from DateTime class
--FILE--
<?php
//Set the default time zone
date_default_timezone_set("Europe/London");
class DateTimeExt1 extends DateTime {
public $property1 = 99;
public $property2 = "Hello";
}
class DateTimeExt2 extends DateTimeExt1 {
public $property3 = true;
public $property4 = 10.5;
}
echo "*** Testing clone on objects whose class derived from DateTime class ***
";
$d1 = new DateTimeExt1("2009-02-03 12:34:41 GMT");
var_dump($d1);
$d1_clone = clone $d1;
var_dump($d1_clone);
$d2 = new DateTimeExt2("2009-02-03 12:34:41 GMT");
var_dump($d2);
$d2_clone = clone $d2;
var_dump($d2_clone);
?>
--EXPECTF--
*** Testing clone on objects whose class derived from DateTime class ***
object(DateTimeExt1)#%d (5) {
["property1"]=>
int(99)
["property2"]=>
string(5) "Hello"
["date"]=>
string(26) "2009-02-03 12:34:41.000000"
["timezone_type"]=>
int(2)
["timezone"]=>
string(3) "GMT"
}
object(DateTimeExt1)#%d (5) {
["property1"]=>
int(99)
["property2"]=>
string(5) "Hello"
["date"]=>
string(26) "2009-02-03 12:34:41.000000"
["timezone_type"]=>
int(2)
["timezone"]=>
string(3) "GMT"
}
object(DateTimeExt2)#%d (7) {
["property1"]=>
int(99)
["property2"]=>
string(5) "Hello"
["property3"]=>
bool(true)
["property4"]=>
float(10.5)
["date"]=>
string(26) "2009-02-03 12:34:41.000000"
["timezone_type"]=>
int(2)
["timezone"]=>
string(3) "GMT"
}
object(DateTimeExt2)#%d (7) {
["property1"]=>
int(99)
["property2"]=>
string(5) "Hello"
["property3"]=>
bool(true)
["property4"]=>
float(10.5)
["date"]=>
string(26) "2009-02-03 12:34:41.000000"
["timezone_type"]=>
int(2)
["timezone"]=>
string(3) "GMT"
}
Did this file decode correctly?
Original Code
--TEST--
Test clone of objects whose class derived from DateTime class
--FILE--
<?php
//Set the default time zone
date_default_timezone_set("Europe/London");
class DateTimeExt1 extends DateTime {
public $property1 = 99;
public $property2 = "Hello";
}
class DateTimeExt2 extends DateTimeExt1 {
public $property3 = true;
public $property4 = 10.5;
}
echo "*** Testing clone on objects whose class derived from DateTime class ***\n";
$d1 = new DateTimeExt1("2009-02-03 12:34:41 GMT");
var_dump($d1);
$d1_clone = clone $d1;
var_dump($d1_clone);
$d2 = new DateTimeExt2("2009-02-03 12:34:41 GMT");
var_dump($d2);
$d2_clone = clone $d2;
var_dump($d2_clone);
?>
--EXPECTF--
*** Testing clone on objects whose class derived from DateTime class ***
object(DateTimeExt1)#%d (5) {
["property1"]=>
int(99)
["property2"]=>
string(5) "Hello"
["date"]=>
string(26) "2009-02-03 12:34:41.000000"
["timezone_type"]=>
int(2)
["timezone"]=>
string(3) "GMT"
}
object(DateTimeExt1)#%d (5) {
["property1"]=>
int(99)
["property2"]=>
string(5) "Hello"
["date"]=>
string(26) "2009-02-03 12:34:41.000000"
["timezone_type"]=>
int(2)
["timezone"]=>
string(3) "GMT"
}
object(DateTimeExt2)#%d (7) {
["property1"]=>
int(99)
["property2"]=>
string(5) "Hello"
["property3"]=>
bool(true)
["property4"]=>
float(10.5)
["date"]=>
string(26) "2009-02-03 12:34:41.000000"
["timezone_type"]=>
int(2)
["timezone"]=>
string(3) "GMT"
}
object(DateTimeExt2)#%d (7) {
["property1"]=>
int(99)
["property2"]=>
string(5) "Hello"
["property3"]=>
bool(true)
["property4"]=>
float(10.5)
["date"]=>
string(26) "2009-02-03 12:34:41.000000"
["timezone_type"]=>
int(2)
["timezone"]=>
string(3) "GMT"
}
Function Calls
date_default_timezone_set | 1 |
Stats
MD5 | c8da54947c9abea549dd9cc236cbfdd7 |
Eval Count | 0 |
Decode Time | 89 ms |