I am looking for a way to get a list of all the php functions but needed them group by the class they exist in. Not sure if there is a way to get this from PHP docs or if its built into PHP. I am really only looking for built in / popular classes, so a custom mysqli class I dont care about but the mysql library that can be installed with PHP I do need.
Thank you very much
get_declared_classes()+ReflectionClassand a little bit of work will get you there...mysqlis not a class though.Reflection,get_declared_functions,get_declared_classes, and software likePHPDocumentormysql_. those will be listed in groups viaget_defined_functions().get_class_methodsmight do what you want.