Edit report at http://bugs.php.net/bug.php?id=49382&edit=1

 ID:                 49382
 Comment by:         weirdan at gmail dot com
 Reported by:        klawd at kamundo dot de
 Summary:            can't access DateTime->date
 Status:             Assigned
 Type:               Bug
 Package:            Feature/Change Request
 Operating System:   Debian GNU/Linux 5.0
 PHP Version:        5.3.0
 Assigned To:        derick
 Block user comment: N

 New Comment:

if this was not intended to work this way, why won't you just fix it so
that no 

properties are created as a result of print_r / Reflection::export() /
foreach() / 

property_exist / array cast?


Previous Comments:
------------------------------------------------------------------------
[2010-03-07 20:22:06] der...@php.net

->date being available is actually a side-effect of support for
var_dump() here. I'll mark this as a feature request as it was not
intended to work.

------------------------------------------------------------------------
[2009-08-27 07:52:37] klawd at kamundo dot de

Description:
------------
Can not access property date of DateTime.

Reproduce code:
---------------
$dt=new DateTime('1742-05-23 00:00:00'); echo $dt->date;

gets me Notice: Undefined property: DateTime::$date



strangely though, this works:

$dt=new DateTime('1742-05-23 00:00:00'); print_r($dt); echo $dt->date;

DateTime Object ( [date] => 1742-05-23 00:00:00 [timezone_type] => 3
[timezone] => UTC ) 1742-05-23 00:00:00





------------------------------------------------------------------------



-- 
Edit this bug report at http://bugs.php.net/bug.php?id=49382&edit=1

Reply via email to