print_r to get object methods in PHP?

Nick Heiner picture Nick Heiner · Aug 17, 2009 · Viewed 19.6k times · Source

I'm working with Views 2 in Drupal 6, and I am having difficulty finding documentation on the methods of the View object. Is there any PHP function like print_r that outputs methods as well as fields?

Answer

Mathachew picture Mathachew · Aug 17, 2009

I believe you're looking for get_class_methods. If this is the case, get_class_vars may also interest you.