ID:               20296
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Open
+Status:           Bogus
 Bug Type:         Class/Object related
 Operating System: Win NT 4.0
 PHP Version:      4.2.2
 New Comment:

You expect wrong :)

PHP is case-insensitive, which in practice means, that internally it is
converted to lowercase. This goes for variables/functions - anything
except certain constants.



Previous Comments:
------------------------------------------------------------------------

[2002-11-07 03:09:28] [EMAIL PROTECTED]

The same goes true for get_parent_class()

Its shows class names in lower case

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

[2002-11-07 02:58:42] [EMAIL PROTECTED]

Using get_class_methods shows method names all in lower case. I expect
this to show the method names as they were typed in for each function.

That is:

class A
{
   function HelloWorld()
   {
   }
}

$a = get_class_methods(A);
print_r($a);

shouldnt be helloworld but rather HelloWorld

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


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

Reply via email to