Skip to content

Instantly share code, notes, and snippets.

@DamianZaremba
Created August 22, 2011 15:38
Show Gist options
  • Save DamianZaremba/1162692 to your computer and use it in GitHub Desktop.
Save DamianZaremba/1162692 to your computer and use it in GitHub Desktop.
<?php
class Bob{
function hi() {
print "Hi from " . get_class() . "\n";
}
}
class Damian{
function hi() {
print "Hi from " . get_class() . "\n";
}
}
$people = array();
$people[] = new Damian();
$people[] = new Bob();
foreach($people as $person) {
$person->hi();
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment