Skip to content

Instantly share code, notes, and snippets.

@gsmcwhirter
Created October 26, 2008 03:47
Show Gist options
  • Save gsmcwhirter/19842 to your computer and use it in GitHub Desktop.
Save gsmcwhirter/19842 to your computer and use it in GitHub Desktop.
<?php
$p = new Person();
$methods = array(
'getContactInfo',
'getIdentification',
);
foreach($methods as $m) {
print_r( $p->$m() );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment