Skip to content

Instantly share code, notes, and snippets.

@pantaovay
Created December 10, 2013 18:16
Show Gist options
  • Save pantaovay/7895305 to your computer and use it in GitHub Desktop.
Save pantaovay/7895305 to your computer and use it in GitHub Desktop.
class foo {
public $bar;
}
class bar {
public function hello() {
return "hello world";
}
}
$myclass = new foo();
$myclass->bar = new bar();
print $myclass->bar->hello();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment