123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- --TEST--
- Tests for DateTime::createFromInterface with inheritance
- --INI--
- date.timezone=Europe/London
- --FILE--
- <?php
- class MyDateTime extends DateTime {}
- $current = "2014-03-02 16:24:08";
- $i = MyDateTime::createFromInterface( date_create( $current ) );
- var_dump( $i );
- $i = MyDateTime::createFromInterface( date_create_immutable( $current ) );
- var_dump( $i );
- $current = "2019-12-16 15:06:46 CET";
- $i = MyDateTime::createFromInterface( date_create( $current ) );
- var_dump( $i );
- $i = MyDateTime::createFromInterface( date_create_immutable( $current ) );
- var_dump( $i );
- $current = "2019-12-16 15:08:20 +0100";
- $i = MyDateTime::createFromInterface( date_create( $current ) );
- var_dump( $i );
- $i = MyDateTime::createFromInterface( date_create_immutable( $current ) );
- var_dump( $i );
- ?>
- --EXPECTF--
- object(MyDateTime)#%d (3) {
- ["date"]=>
- string(26) "2014-03-02 16:24:08.000000"
- ["timezone_type"]=>
- int(3)
- ["timezone"]=>
- string(13) "Europe/London"
- }
- object(MyDateTime)#%d (3) {
- ["date"]=>
- string(26) "2014-03-02 16:24:08.000000"
- ["timezone_type"]=>
- int(3)
- ["timezone"]=>
- string(13) "Europe/London"
- }
- object(MyDateTime)#%d (3) {
- ["date"]=>
- string(26) "2019-12-16 15:06:46.000000"
- ["timezone_type"]=>
- int(2)
- ["timezone"]=>
- string(3) "CET"
- }
- object(MyDateTime)#%d (3) {
- ["date"]=>
- string(26) "2019-12-16 15:06:46.000000"
- ["timezone_type"]=>
- int(2)
- ["timezone"]=>
- string(3) "CET"
- }
- object(MyDateTime)#%d (3) {
- ["date"]=>
- string(26) "2019-12-16 15:08:20.000000"
- ["timezone_type"]=>
- int(1)
- ["timezone"]=>
- string(6) "+01:00"
- }
- object(MyDateTime)#%d (3) {
- ["date"]=>
- string(26) "2019-12-16 15:08:20.000000"
- ["timezone_type"]=>
- int(1)
- ["timezone"]=>
- string(6) "+01:00"
- }
|