List all methods of an object in PHP
Thursday, August 12th, 2010 | Author: André Ourednik
echo get_class($my_class_instance) . '<br/>'; foreach (get_class_methods($my_class_instance) as $method) {echo '--------->' . $method . '<br/>';}
Cite as: Ourednik André (2010) « List all methods of an object in PHP » in Maps and Territories from http://ourednik.info/maps/2010/08/12/list-all-methods-of-an-object-in-php/ [Last-seen May 20th 2012].
Category: Stupid code tricks, Tools
