|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-11-07 03:09 UTC] kkobashi at thegrid dot net
[2002-11-07 11:02 UTC] msopacua@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 16:00:01 2025 UTC |
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