ID: 46064
User updated by: zemi dot inet at gmail dot com
-Summary: Exception on ReflectionProperty created on dynamicly
created property
Reported By: zemi dot inet at gmail dot com
Status: Open
Bug Type: Reflection related
Operating System: Linux amoeba 2.6.22-14-server
PHP Version: 5.2.6
New Comment:
more meaningful summary
Previous Comments:
------------------------------------------------------------------------
[2008-09-12 11:16:08] zemi dot inet at gmail dot com
Description:
------------
Always getting exception when creating ReflectionProperty object on
dynamicly created property.
Discovered when I tried to use ReflectionProperty::isDefault().
I presume it returns true when property is created on compile-time and
false when dynamicly created on run-time?
Reproduce code:
---------------
class x {
public $x = 1;
public $y = 1;
}
$o = new x;
$o->z = 1;
$reflector = new ReflectionProperty($o, 'z');
$d = $reflector->isDefault();
Expected result:
----------------
$d == false
Actual result:
--------------
Fatal error: Uncaught exception 'ReflectionException' with message
'Property x::$z does not exist' on line: $reflector = new
ReflectionProperty($o, 'z');
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=46064&edit=1