Edit report at http://bugs.php.net/bug.php?id=53366&edit=1
ID: 53366 Updated by: fel...@php.net Reported by: jorgevpinho at gmail dot com -Summary: Reflection doesnt show propreties from mysqli_fetch_object("UserClass") +Summary: Reflection doesnt get dynamic property value from getProperty() -Status: Feedback +Status: Open Type: Bug Package: Reflection related Operating System: WinXP SP3 PHP Version: 5.2.13 Block user comment: N Private report: N Previous Comments: ------------------------------------------------------------------------ [2010-11-20 15:47:52] jorgevpinho at gmail dot com $reflect = new ReflectionObject($myClass); $prop = $reflect->getProperty('property1'); echo($prop->getValue()); // Warning: ReflectionProperty::getValue() expects exactly 1 parameter // doc says its not mandatory echo($prop->getValue($myClass)); // no error, but nothing happens and no value is returned ------------------------------------------------------------------------ [2010-11-20 15:04:13] fel...@php.net And using ReflectionObject instead? ------------------------------------------------------------------------ [2010-11-20 13:47:25] jorgevpinho at gmail dot com I mistyped the last line on Test script : $reflect->getProperty('property1'); // breaks ------------------------------------------------------------------------ [2010-11-20 13:45:05] jorgevpinho at gmail dot com Description: ------------ --- >From manual page: http://www.php.net/reflectionclass.getproperties --- Test script: --------------- class UserClass { } $myClass = $mysqli_rs->fetch_object("UserClass"); $reflect = new ReflectionClass($myClass); echo($myClass->property1); //works $reflect->getProperty('titulo'); // breaks Expected result: ---------------- no error ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/bug.php?id=53366&edit=1