List all methods of an object in PHP Published: August 12th, 2010 — Updated: February 3rd, 2018 Leave a comment on List all methods of an object in PHP echo get_class($my_class_instance) . '<br/>'; foreach (get_class_methods($my_class_instance) as $method) {echo '--------->' . $method . '<br/>';}