Skip to content

Instantly share code, notes, and snippets.

@sarfraznawaz2005
Last active October 12, 2015 18:28
Show Gist options
  • Save sarfraznawaz2005/268b17b866ef377d9f09 to your computer and use it in GitHub Desktop.
Save sarfraznawaz2005/268b17b866ef377d9f09 to your computer and use it in GitHub Desktop.
example of how to know about methods of a class
<?php
foreach(get_class_methods(new ArrayObject()) as $key=>$method)
{
echo $key.' -> '.$method.'<br />';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment