List all methods of an object in PHP Published: August 12th, 2010 — Updated: November 20th, 2025 echo get_class($my_class_instance) . '<br/>'; foreach (get_class_methods($my_class_instance) as $method) {echo '--------->' . $method . '<br/>';}