Skip to content

Instantly share code, notes, and snippets.

@brennen
Created June 29, 2010 20:48
Show Gist options
  • Save brennen/457794 to your computer and use it in GitHub Desktop.
Save brennen/457794 to your computer and use it in GitHub Desktop.
<?php
class foo {
function __construct ($arg) {
echo $arg;
}
}
class bar extends foo {
}
$baz = new foo('hi');
?>
# sez hi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment