ID:               46064
 Updated by:       [EMAIL PROTECTED]
 Reported By:      zemi dot inet at gmail dot com
-Status:           Assigned
+Status:           To be documented
 Bug Type:         Reflection related
 Operating System: Linux amoeba 2.6.22-14-server
 PHP Version:      5.2.6
 Assigned To:      felipe
 New Comment:

This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.

We need add some examples for this case. The tests added with the patch
can help.
http://news.php.net/php.cvs/53766


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

Reply via email to