Hello. I am woking on an object-oriented PHP project that contains classes with case sensitive names (ie: viewMember, editMember...). I have been using the built-in get_class() function to expose the class names, but it returns the class names in all lower case (ie: viewmember, editmember...) which breaks the program. Is there a reason get_class() does this? Is there a way around it? Daryl