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

 ID:                 53439
 Comment by:         rdo...@php.net
 Reported by:        from dot php dot net at brainbox dot cz
 Summary:            DatePeriod does not expose any properties
 Status:             Assigned
 Type:               Feature/Change Request
 Package:            Date/time related
 Operating System:   Windows XP SP3
 PHP Version:        5.3.3
 Assigned To:        derick
 Block user comment: N
 Private report:     N

 New Comment:

Same thing happens with DateInterval


Previous Comments:
------------------------------------------------------------------------
[2012-05-30 19:15:28] krebs dot seb at googlemail dot com

Anything new here? As far as I understood cataphract a patch exists. What 
happened to it?

------------------------------------------------------------------------
[2011-01-09 06:00:13] cataphr...@php.net

Reassigning to Derick, as the patch I've written is under his consideration.

------------------------------------------------------------------------
[2010-12-01 17:58:19] from dot php dot net at brainbox dot cz

Description:
------------
The DatePeriod instance does not expose its internal properties, thus makes 
impossible to extend the class.

The properties are not visible in the reflection as well. Also, when I cast the 
instance to array (which usually exposes all properties), no props are shown.

The draft of the test follows.

Test script:
---------------
$dp = new DatePeriod(new DateTime('2010-01-01'), new DateInterval('P1D'), 2);
$r = new ReflectionObject($dp);
$arr = (array)$dp; // cast to array to see the values of propeties

echo "Properties:\r\n";
foreach($r->getProperties() as $v) {
        echo $v->getName()."\r\n";
}
echo "\r\n";

echo "Methods:\r\n";
foreach($r->getMethods() as $v) {
        echo $v->getName()."\r\n";
}
echo "\r\n";

echo "Array cast:\r\n";
echo strtr(print_r($arr, true), "\0", '_');

Expected result:
----------------
Properties:
any_valid_properties...
...listed_here_after_implementing

Array cast:
Array
(
   any_valid_properties...
   ...listed_here_after_implementing
)


Actual result:
--------------
Properties:

Array cast:
Array
(
)



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



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

Reply via email to